/* General Styles */

body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    background-color: #073312; /* Soft beige background for a relaxing atmosphere */

    margin: 0;

    padding: 0;

}



/* Center the login form in the viewport */

#login-container {

    display: flex;

    justify-content: center;

    align-items: center;

    height: 100vh;

    background: linear-gradient(135deg, #02320e, #d0c2aa); /* Soft gradient to match the aesthetic theme */

}



/* Style the login form */

.login-form-container {

    background-color: #ffffff;

    padding: 40px;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    width: 100%;

    max-width: 400px;

    text-align: center;

    font-family: 'Georgia', serif; /* Elegant font for titles */

}



.login-form-container h1 {

    color: #073312; /* Light pink color */

    font-size: 2.5rem;

    margin-bottom: 10px;

}



.login-form-container h3 {

    color: #073312; /* Darker rose color for subtitles */

    font-size: 1.3rem;

    margin-bottom: 30px;

}



/* Form Fields */

.form-group {

    margin-bottom: 20px;

}



.form-group label {

    font-size: 1rem;

    color: #073312;

    display: block;

    text-align: left;

    font-weight: bold;

}



.form-control {

    border-radius: 8px;

    border: 1px solid #073312;

    padding: 12px;

    font-size: 1rem;

    width: 100%;

    transition: border-color 0.3s;

}



.form-control:focus {

    border-color: #073312; /* Soft pink on focus */

    outline: none;

}



/* Button Styles */

.btn {

    background-color: #073312; /* Soft pink for the button */

    color: white;

    font-size: 1.1rem;

    padding: 12px;

    border-radius: 8px;

    transition: background-color 0.3s;

    border: none;

}



.btn:hover {

    background-color: #073312; /* Darker pink for hover effect */

}



/* Show password link */

.show-password {

    margin-top: 10px;

}



.show-password .btn {

    background: transparent;

    color: #073312;

    padding: 0;

    font-size: 1rem;

    text-decoration: underline;

}



.show-password .btn:hover {

    color: #073312;

    text-decoration: none;

}

.imag{

 width: 250px;

}

/* Responsive Design */

@media (max-width: 768px) {

    #login-container {

        padding: 20px;

    }

.form-control{
    font-size: 16px;
}

    .login-form-container {

        padding: 20px;

        max-width: 100%;

    }

}