body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #e0f2f1; /* Teal background color */
}

.login-container {
    justify-content: center;
    display: flex;
    background-color: #ffffff; /* White container background */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-image: url('assets/alog.jpg');
    height: 720px;
}

.login-form {
    padding: 30px;
        margin-top: 150px;
        height: 500px;
        border-radius: 5px;
        box-shadow: #757575;
        background: snow;
}

.login-form h2 {
    margin-bottom: 20px;
    color: #26a69a; /* Form header text color */
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 20px;
    color: #26a69a; /* Input label color */
}

.input-group input {
    padding: 10px;
        border: 1px solid #d1d1d1;
        /* Input border color */
        border-radius: 5px;
        font-size: 16px;
        width: 90%;
}

.input-group input::placeholder {
    color: #757575; /* Input placeholder text color */
}

.input-group label i {
    margin-right: 10px;
    color: #26a69a; /* Icon color */
}

button {
    width: 100%;
    padding: 10px;
    background-color: #26a69a; /* Button background color */
    color: #ffffff; /* Button text color */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2bbbad; /* Button hover background color */
}

.options {
    margin-top: 20px;
    text-align: center;
}

.options a {
    color: #757575; /* Link color */
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.options a:hover {
    color: #26a69a; /* Link hover color */
}


/* css for logo and site name */
.logo {
    width: 100px;
    /* Adjust width as needed */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    margin: 0 auto 10px;
    /* Center horizontally and add bottom margin */
}

.site-name {
    text-align: center;
    margin-bottom: 20px;
}