


/* Reset and Base Styles */
body {
    background-image: url('../dist/img/login.png') !important;
    background-color: #1d75cd !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    body {
        background-image: url('../dist/img/login.png') !important;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
    }
}

/* Login Container */
.login-container {
    width: 100%;
    max-width: 400px;
}

/* Login Box */
.login-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-box h2 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.5rem;
    font-weight: 900;
}

.subtitle {
    color: #888;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Input Group */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    background: #f9f9f9;
}

.input-group i {
    margin-right: 10px;
    color: #555;
    font-size: 1.5rem;
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.5rem;
    padding: 5px 0;
    font-weight: 700;
}

/* Password Toggle */
.password-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    color: #888;
}

.toggle-password i {
    font-size: 1.5rem;
    pointer-events: auto;
}

/* Login Button */
.login-btn {
    width: 100%;
    background: #007BFF;
    color: white;
    padding: 12px;
    font-size: 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.login-btn:hover {
    background: #0056b3;
}

/* Alert Messages */
.login-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 1.5rem;
    text-align: center;
}

.login-error {
    background-color: #dc3545;
    border: 1px solid #bd2130;
    color: white;
}

.login-success {
    background-color: #28a745;
    border: 1px solid #218838;
    color: white;
}

/* Login Footer */
.login-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
}

.login-footer strong {
    color: #cab7b7;
    font-weight: bolder;
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-box {
        padding: 20px 15px;
    }

    .login-box h2 {
        font-size: 1.2rem;
    }

    .input-group {
        flex-direction: row;
        padding: 8px;
    }

    .input-group i {
        font-size: 0.9rem;
        margin-right: 8px;
    }

    .input-group input {
        font-size: 0.95rem;
    }

    .login-btn {
        font-size: 0.95rem;
        padding: 10px;
    }
}












