@import '_content/UrlaubBro.Web.Shared/UrlaubBro.Web.Shared.bundle.scp.css';

/* _content/UrlaubBro.Web.Creator/Pages/Login.razor.rz.scp.css */
/* ===========================================
   CREATOR LOGIN - CLEAN PLATFORM STYLE
   Based on UrlaubBro.Web.Platform Design
   =========================================== */

/* === PAGE WRAPPER === */
.login-wrapper[b-pxj0bnyrtt] {
    min-height: 100vh;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* === CONTAINER === */
.login-container[b-pxj0bnyrtt] {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 2.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* === LOGO === */
.login-logo[b-pxj0bnyrtt] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo img[b-pxj0bnyrtt] {
    width: 200px;
    height: auto;
}

/* === HEADER === */
.login-header[b-pxj0bnyrtt] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-title[b-pxj0bnyrtt] {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.login-subtitle[b-pxj0bnyrtt] {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

/* === FORM === */
.login-form[b-pxj0bnyrtt] {
    margin-bottom: 1.5rem;
}

.form-group[b-pxj0bnyrtt] {
    margin-bottom: 1.2rem;
}

.form-label[b-pxj0bnyrtt] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 14px;
    color: #2c3e50;
}

.form-input[b-pxj0bnyrtt] {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    color: #2c3e50;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-input:hover[b-pxj0bnyrtt] {
    border-color: #dee2e6;
}

.form-input:focus[b-pxj0bnyrtt] {
    outline: none;
    border-color: var(--creator-primary, #16233D);
    box-shadow: 0 0 0 4px rgba(22, 35, 61, 0.1);
}

.form-input[b-pxj0bnyrtt]::placeholder {
    color: #adb5bd;
}

/* === CHECKBOX & FORGOT PASSWORD === */
.form-row[b-pxj0bnyrtt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox[b-pxj0bnyrtt] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.checkbox input[type="checkbox"][b-pxj0bnyrtt] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--creator-primary, #16233D);
}

.checkbox-label[b-pxj0bnyrtt] {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.forgot-link[b-pxj0bnyrtt] {
    font-size: 14px;
    color: var(--creator-primary, #16233D);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.forgot-link:hover[b-pxj0bnyrtt] {
    color: #094a7a;
    text-decoration: underline;
}

/* === ERROR MESSAGE === */
.error-message[b-pxj0bnyrtt] {
    padding: 14px 16px;
    margin-bottom: 1.2rem;
    background: #fee;
    border: 2px solid #fcc;
    border-radius: 10px;
    color: #c33;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-message i[b-pxj0bnyrtt] {
    font-size: 18px;
    flex-shrink: 0;
}

/* === PRIMARY BUTTON === */
.btn-login[b-pxj0bnyrtt] {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--nv-ink, #16233D);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(22, 35, 61, 0.3);
}

.btn-login:hover:not(:disabled)[b-pxj0bnyrtt] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 35, 61, 0.4);
}

.btn-login:active:not(:disabled)[b-pxj0bnyrtt] {
    transform: translateY(0);
}

.btn-login:disabled[b-pxj0bnyrtt] {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner[b-pxj0bnyrtt] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-pxj0bnyrtt 0.6s linear infinite;
}

@keyframes spin-b-pxj0bnyrtt {
    to {
        transform: rotate(360deg);
    }
}

/* === DIVIDER === */
.divider[b-pxj0bnyrtt] {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #6c757d;
}

.divider[b-pxj0bnyrtt]::before,
.divider[b-pxj0bnyrtt]::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.divider span[b-pxj0bnyrtt] {
    padding: 0 16px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === SSO BUTTONS === */
.sso-buttons[b-pxj0bnyrtt] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.btn-sso[b-pxj0bnyrtt] {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #2c3e50;
}

.btn-sso:hover:not(:disabled)[b-pxj0bnyrtt] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-sso:active:not(:disabled)[b-pxj0bnyrtt] {
    transform: translateY(0);
}

.btn-sso i[b-pxj0bnyrtt] {
    font-size: 20px;
}

/* Google specific */
.btn-google:hover:not(:disabled)[b-pxj0bnyrtt] {
    border-color: #4285F4;
    background: #f8f9fa;
}

.btn-google i[b-pxj0bnyrtt] {
    color: #4285F4;
}

/* Facebook specific */
.btn-facebook:hover:not(:disabled)[b-pxj0bnyrtt] {
    border-color: #1877f2;
    background: #f8f9fa;
}

.btn-facebook i[b-pxj0bnyrtt] {
    color: #1877f2;
}

/* === FOOTER === */
.login-footer[b-pxj0bnyrtt] {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.login-footer p[b-pxj0bnyrtt] {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.signup-link[b-pxj0bnyrtt] {
    color: var(--creator-primary, #16233D);
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}

.signup-link:hover[b-pxj0bnyrtt] {
    color: #094a7a;
    text-decoration: underline;
}

/* === STATS (optional, if kept from old design) === */
.brand-stats[b-pxj0bnyrtt] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.stat[b-pxj0bnyrtt] {
    text-align: center;
    padding: 1rem 0.5rem;
}

.stat-number[b-pxj0bnyrtt] {
    font-size: 22px;
    font-weight: 700;
    color: var(--creator-primary, #16233D);
    margin-bottom: 4px;
}

.stat-label[b-pxj0bnyrtt] {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* === RESPONSIVE === */
@media (max-width: 576px) {
    .login-container[b-pxj0bnyrtt] {
        padding: 2rem 1.5rem;
    }

    .login-logo img[b-pxj0bnyrtt] {
        width: 160px;
    }

    .login-title[b-pxj0bnyrtt] {
        font-size: 22px;
    }

    .form-row[b-pxj0bnyrtt] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .brand-stats[b-pxj0bnyrtt] {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* === ACCESSIBILITY === */
.form-input:focus-visible[b-pxj0bnyrtt],
.btn-login:focus-visible[b-pxj0bnyrtt],
.btn-sso:focus-visible[b-pxj0bnyrtt],
.forgot-link:focus-visible[b-pxj0bnyrtt],
.signup-link:focus-visible[b-pxj0bnyrtt] {
    outline: 3px solid var(--creator-primary, #16233D);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *[b-pxj0bnyrtt],
    *[b-pxj0bnyrtt]::before,
    *[b-pxj0bnyrtt]::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
/* _content/UrlaubBro.Web.Creator/Shared/MainLayout.razor.rz.scp.css */
.page[b-2a06fyu5yz] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-2a06fyu5yz] {
    flex: 1;
}

.sidebar[b-2a06fyu5yz] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-2a06fyu5yz] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-2a06fyu5yz]  a, .top-row .btn-link[b-2a06fyu5yz] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-2a06fyu5yz] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-2a06fyu5yz] {
        display: none;
    }

    .top-row.auth[b-2a06fyu5yz] {
        justify-content: space-between;
    }

    .top-row a[b-2a06fyu5yz], .top-row .btn-link[b-2a06fyu5yz] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-2a06fyu5yz] {
        flex-direction: row;
    }

    .sidebar[b-2a06fyu5yz] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-2a06fyu5yz] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-2a06fyu5yz], article[b-2a06fyu5yz] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
