/* styles.css */

body {
     /* background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTLoukpvot2m49FAhmbKYTqQcgWBMON1Q8yhw&s');
     background-size: cover;
    background-position: center;  */
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    max-width: auto;

}

.form-container {
   
    /* background-color: white; */
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    margin: auto;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
}

.form-container h2 {
    text-align: center;
}

/* Logo Styles */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 100px; /* Adjust the size of the logo */
    height: auto;
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ddd;
}
.formtext{
    color: black;
}

.form-container button {
    width: 100%;
    height: 30px;
    padding: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    position: relative; /* Make it the container for the loader */
    overflow: hidden; /* Hide anything overflowing the button */
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container button:hover {
    background-color: #45a049;
}

.submit-container {
    position: relative;
}

#submitText {
    display: inline-block;
}

.loader {
    display: none; /* Hidden by default */
    border: 4px solid #f3f3f3; /* Light grey background */
    border-top: 4px solid #3498db; /* Blue color for the rotating part */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
