
main{
    align-content: center;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes content apart */
    align-items: center;
    width: 30%;
    height: 40vh;
    min-width: 250px;
    min-height: 370px;
    background-color: var(--navbar-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    overflow: auto;
    justify-self: center;

}

/* Logo & Header */
.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.form-header h2 {
    font-size: 24px;
}

/* Input Fields */
form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    width: 80%;
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
}

input {
    width: 80%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 5px;
    font-size: 16px;
}

/* Insurance Header */
.insurance-header {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: underline;
}


.Login-btn:hover {
    background-color: darkred;
}



/* Push login-actions to the bottom */
.login-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto; 
}


.login-btn {
    height: 47px;
    color: var(--main-text-color);
    background-color: #D00000;
    border-radius: 10px;
    font-size: 14px;
    width: 80%;
    margin-bottom: 10px; /* Add spacing between button and forgot password */
}

.login-btn:hover {
    background-color: darkred;
}

/* Forgot password link */
.login-actions a {
    text-decoration: none;
    color: white;
}

.login-actions a:hover {
    text-decoration: underline;
}



