.auth-simple-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at 12% 16%, rgba(59, 140, 255, .16), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(9, 105, 243, .12), transparent 30%),
        #f5f9ff;
}

.auth-simple-card {
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    border: 1px solid #e5e0f2;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 65px rgba(15, 61, 120, .14);
}

.auth-simple-header {
    padding: 30px 30px 26px;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, #082b66, #0969f3 62%, #3b8cff);
}

.auth-simple-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 16px;
    background: rgba(255, 255, 255, .14);
    font-size: 1.3rem;
}

.auth-simple-header h1 {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 750;
}

.auth-simple-header p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: .88rem;
}

.auth-simple-body {
    padding: 28px 30px 30px;
}

.auth-simple-field {
    margin-bottom: 17px;
}

.auth-simple-field label {
    display: block;
    margin-bottom: 7px;
    color: #433b55;
    font-size: .82rem;
    font-weight: 700;
}

.auth-simple-input {
    position: relative;
}

.auth-simple-input i {
    position: absolute;
    top: 50%;
    left: 14px;
    color: #968da8;
    transform: translateY(-50%);
}

.auth-simple-input input {
    width: 100%;
    min-height: 48px;
    padding: 10px 13px 10px 42px;
    color: #302a3f;
    border: 1px solid #ddd7ec;
    border-radius: 11px;
    outline: 0;
}

.auth-simple-input input:focus {
    border-color: #3b8cff;
    box-shadow: 0 0 0 4px rgba(9, 105, 243, .12);
}

.auth-simple-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin-top: 3px;
    color: #fff;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(135deg, #0969f3, #0756ce);
    box-shadow: 0 9px 20px rgba(9, 105, 243, .2);
    font-weight: 700;
}

.auth-simple-footer {
    margin: 20px 0 0;
    color: #756e83;
    text-align: center;
    font-size: .86rem;
}

.auth-simple-footer a {
    color: #0969f3;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 575.98px) {
    .auth-simple-page {
        padding: 14px;
    }

    .auth-simple-header,
    .auth-simple-body {
        padding-right: 21px;
        padding-left: 21px;
    }
}
