

body{
    background-color: beige;
    
    text-align: center;
}

.main{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.content{
    display: flex;
    flex-direction: column;
    margin-left: 30%;
    margin-right: 30%;
}

.error{
    color: #e62020;
    margin: 0%;
    font-family: 'Times New Roman', Times, serif;
    visibility: hidden;
}

.main input{
    width: auto;
    border-radius: 5px;
    border-color: red;
    border-style: solid;
    border-width: 3px;
    padding: 10px;
}

.main select{
    border-radius: 5px;
    border-color: red;
    border-style: solid;
    border-width: 3px;
    font-weight: bold;
    padding: 10px;

}

#img-logo{
    position: relative;
    right: 47%;
    width: 5%;
    height: 10%
}

button{
    background-color: red;
    color: white ;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    font-weight: bold;
}

button:hover{
    color: red;
    background-color: white;
    cursor:pointer;
}

   
img {
    max-width: 100%;
    max-height: 100%;
}

h1{
    font-size: large;
}

@media (min-width: 640px) {
    h1 {
        font-size: x-large;
    }
}
    


.main .feedback{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
}

#example{
    margin-top: 50px;
}

form{
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#collabtext{
    display: inline;
}
textarea{
    width: auto;
    border-radius: 5px;
    border-color: red;
    border-style: solid;
    border-width: 3px;
    padding: 10px;
}

#loadtext{
    color: white; /* Ensure the text is visible against the background */
    margin-top: 20px; /* Adjust the spacing between loader and text */
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.modal{
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    flex-direction: column; /* Stack loader and text vertically */
}

.loader {
    
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #ffffff;
    border-right: 16px solid #e62020;
    border-bottom: 16px solid #e62020;
    border-left: 16px solid #e62020;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
