body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: background 1s ease-in-out;
    position: relative;
}

.login-container {
    background-color: #212121;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 450px;
    height: 500px;
}

    .login-container h2 {
        margin-bottom: 20px;
        color: white;
    }

.form-group {
    margin-bottom: 15px;
    position: relative;
}

    .form-group input, .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box;
        font-size: 14px;
    }

    .form-group select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: #fff url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M3.5 4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V4z%22 fill=%22%23333%22/%3E%3C/svg%3E') no-repeat right 10px center;
        background-size: 12px;
        padding-right: 30px;
    }

.login-container button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 5px;
}
/* Modal Styling */
.modal-success {
    border-left: 5px solid #28a745;
}

.modal-error {
    border-left: 5px solid #dc3545;
}

.modal-icon {
    margin-right: 8px;
    font-size: 1.2em;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-footer {
    border-top: none;
    padding-top: 0;
}

    .modal-footer .btn {
        background-color: #007bff;
        color: white;
    }

        .modal-footer .btn:hover {
            background-color: #0069d9;
        }

.forgot-password {
    display: block;
    margin-top: 5px;
    margin-bottom: 50px;
    text-align: left;
    font-size: 14px;
}

    .forgot-password a {
        color: #007bff;
        text-decoration: none;
    }

.banner img {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.tagline {
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 30px;
    color: white;
}

.bottom {
    margin-top: 40px;
    text-align: center;
    color: gray;
    font-size: 13px;
}

hr {
    margin-bottom: 30px;
    color: white;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
}

    .logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (max-width: 768px) {
    .login-container {
        width: 100%;
        max-width: 380px;
        padding: 15px;
    }

    .form-group input, .form-group select {
        font-size: 14px;
        padding: 10px;
    }

    .login-container button {
        font-size: 16px;
        padding: 10px;
    }

    .tagline {
        font-size: 16px;
    }

    .forgot-password {
        font-size: 10px;
        flex-direction: column;
        text-align: center;
    }

        .forgot-password a {
            margin-bottom: 5px;
        }

    .logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .login-container {
        max-width: 320px;
        padding: 12px;
    }

    .form-group input, .form-group select {
        font-size: 14px;
        padding: 10px;
    }

    .login-container button {
        font-size: 14px;
        padding: 10px;
    }

    .tagline {
        font-size: 14px;
    }

    .forgot-password {
        font-size: 10px;
    }

    .bottom {
        font-size: 12px;
    }

    .logo {
        width: 75px;
        height: 75px;
        top: 10px;
        left: 10px;
    }
}
