.default-layout {
    width: 100dvw;
    height: 100dvh;
    background-image: url(/img/bg.png);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.form-wrapper {
    min-width: 550px;
    height: 100%;
    padding: 16px;

    /* Border */
    border: 1px solid rgba(255, 255, 255, 0.3);

    /* Border radial gradient giả lập */
    background:
        radial-gradient(
        ellipse at top,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0.2) 40%,
        transparent 70%
        );

    /* Drop shadow */
    box-shadow:
        0px 8px 16px rgba(0, 0, 0, 0.1),

        /* Inner shadow */
        inset 0px 4px 4px rgba(255, 255, 255, 0.25);

    /* Background blur (Glassmorphism) */
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);

    /* Nên có */
    background-color: rgba(255, 255, 255, 0.05);
}

.form-content {
    width: auto;
    height: 100%;
    background: white;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.login-form {
    width: 100%;
}

.form-title {
    margin: 0 !important;
}

.btn-icon {
    display: flex;
    align-items: center;
}

.social-btn-group {
    display: flex;
    gap: 8px
}

.remember-forgot-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.form-item-label {
    padding: 0 !important;
}

.form-item {
    margin-bottom: 12px !important;
}