body {
    background-color: #ff7a00;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


.container {
    display: flex;
    flex-direction: column;  /* Stack elements vertically */
    align-items: center;      /* Center horizontally */
    gap: 20px;                /* Add space between notice and signup-container */
    margin-top: 50px;         /* Optional: space from the top */
}


.login-container{
    background-color: white;
    padding: 10px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 350px;
    height: 400px;
    margin-top: 0px;
}


.signup-container {
    background-color: white;
    padding: 10px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 350px;
    height: 400px;
    margin-top: -20px;
}


.login-container h2, .signup-container h2{
    text-align: center;
    margin-top: 0;
    color: black;
    font-size: 2rem;
}

.forgot-password-container p, .forgot-password-container h2 {
    color: black;
}


.input-field {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid black;
    border-radius: 7px;
    margin-top: 20px;
    margin-left: -10px;
}


.input-field:focus {
    outline: none;
    border-color: #ff7a00;
}


.login-btn, .signup-btn {
    width: 100%;
    padding: 10px;
    background-color: #ff7a00;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 1rem;
}



.login-btn:hover, .signup-btn:hover {
    background-color: #d4810c;
}


.signup-link, .login-link {
    text-align: center;
    margin-top: 10px;
}



.signup-link a, .login-link a, .back-to-login a, .forgot-password a {
    text-decoration: underline;
    color: #ff7a00;
}

.signup-link a:hover, .login-link a:hover {
    text-decoration: underline;
}



.verification_code{
    color: black;
}



.forgot-password-container{
    background-color: white;
    padding: 10px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 350px;
    height: 300px;
    margin-top: -50px;
}



#home-button {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px; /* Increased width */
    height: 120px; /* Increased height */
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 50%; /* Makes the image round */
    overflow: hidden; /* Ensures the image fits within the round shape */
}

#home-button img {
    width: 100%; /* Ensures the image fits inside the button */
    height: 100%;
    object-fit: cover; /* Ensures the image does not stretch */
}

#home-button:hover {
    transform: translateX(-50%) scale(1.1); /* Keeps the hover zoom effect */
}


.reset-btn{
    width: 100%;
    padding: 10px;
    background-color: #ff7a00;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 1rem;
}



.alert {
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}



@media (max-width: 600px) {
    .login-container, .forgot-password-container{
        width: 80%;
    }

    .signup-container{
        width: 80%;
        margin-top: -50px;
    }
}