body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.auth-container {
    display: flex;
    flex-direction: row;
    height: 100vh;
    /* background: url('/mazer/static/images/bg/rain.gif') no-repeat center center / cover; */
    background: url('/mazer/static/images/bg/1.png') no-repeat center center / cover;
}

.auth-left {
    flex: 1;
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.auth-left img.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.auth-left h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.auth-left p {
    font-size: 18px;
    margin-bottom: 10px;
}

.auth-right {
    flex: 1;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    padding: 20px;
}

.login-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    max-width: 500px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.login-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.login-card input {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
}

.login-card input::placeholder {
    color: #ddd;
}

.form-control-icon i {
    color: #ddd;
}

.btn-primary {
    background-color: #2c73eb;
    border: none;
    width: 100%;
    padding: 10px;
    font-weight: bold;
}

.text-center a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-left,
    .auth-right {
        flex: unset;
        width: 100%;
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }

    .auth-left {
        align-items: center;
    }

    .auth-left h1 {
        font-size: 32px;
    }

    .auth-left p {
        font-size: 16px;
    }

    .auth-left img.logo {
        max-width: 120px;
    }

    .login-card {
        padding: 30px 20px;
    }
}