﻿body {
    background-color: #123; /* Set your desired background color */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: white;
    padding: 20px;
    width: 350px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 24px;
    color: #333;
}

.input-group {
    margin-bottom: 15px;
    position: relative;
}

    .input-group input {
        width: 90%;
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ddd;
        font-size: 16px;
    }

    .input-group i {
        position: absolute;
        top: 10px;
        left: 10px;
        color: #888;
    }

    .input-group input[type="password"] {
        background-color: #ffffaa; /* Yellow background for password input */
    }

.login-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    width: 96%;
}

    .login-button:hover {
        background-color: #45a049;
    }

.forgot-password {
    margin-top: 10px;
    font-size: 14px;
}

    .forgot-password a {
        color: #007bff;
        text-decoration: none;
    }

    .forgot-password a:hover {
        text-decoration: underline;
    }

.alert {
    color: #e74c3c;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
    font-style:italic;
}

    /*.alert-danger {
        background-color: #e74c3c;*/ /* Red color for error */
    /*}*/
