/* Base Styles */
body {
    background-color: #f5f7fa;
    background-image: url("/mdm/image/backdrop.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
}


    .login-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .login-box {
        background: #ffffff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
        max-width: 400px;
        width: 100%;
        text-align: center;
    }

    .login-box img {
        width: 150px;
        margin-bottom: 20px;
    }

    .login-box h3 {
        font-weight: bold;
        color: #333;
        margin-bottom: 20px;
    }

    .form-group input {
        height: 45px;
        font-size: 16px;
    }

    .btn-primary {
        background: #007bff;
        border: none;
        height: 45px;
        font-size: 16px;
        font-weight: bold;
    }

    .btn-primary:hover {
        background: #0056b3;
    }

    .remember-me {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-text {
        font-size: 12px;
        color: #666;
        margin-top: 20px;
    }