/* Reset */
body {
    margin: 0;
    background: #fff;
}

/* Safe area (notch / webview) */
.login-safe {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

/* Background wrapper */
.login-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
}

/* Top blue section */
.login-bg::before {
    content: "";
    position: absolute;
    top: 0;
    height: 45%;
    width: 100%;
    background: linear-gradient(135deg, #6fb7e7, #5aa7db);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

/* Bottom white section */
.login-bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 55%;
    width: 100%;
    background: #ffffff;
}

/* Login card */
.login-card {
    max-width: 420px;
    border-radius: 24px;
}

/* Inputs */
.form-control {
    border-radius: 12px;
}

.form-control-lg {
    font-size: 1rem;
}

/* Button */
.btn-primary {
    background: linear-gradient(135deg, #6fb7e7, #5aa7db);
    border: none;
}

.btn-primary:hover {
    opacity: 0.95;
}

.login-card input[type="text"], .login-card input[type="email"], .login-card input[type="password"] {
    border: 0px solid #fff;
    background-color: #F7F7F8 !important;
    outline: none;
}