/* PlaylistToday Auth Pages -- Brief 7 -- June 2026 */

/* Body & layout -------------------------------------------- */
body.plt-auth-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #F8F4FF;
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
}

.plt-auth-header {
    background: #fff;
    border-bottom: 0.5px solid #E5E7EB;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.plt-auth-logo img { display: block; height: 28px; }

.plt-auth-back {
    font-size: 13px;
    color: #6B3FA0;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.plt-auth-back:hover { text-decoration: underline; color: #6B3FA0; }

.plt-auth-main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 16px 32px;
}

.plt-auth-footer {
    text-align: center;
    padding: 20px 16px;
    font-size: 12px;
    color: #9CA3AF;
    flex-shrink: 0;
}
.plt-auth-footer a { color: #9CA3AF; text-decoration: none; }
.plt-auth-footer a:hover { text-decoration: underline; }

/* Auth card ------------------------------------------------- */
.plt-auth-card {
    background: #fff;
    border: 0.5px solid #E5E7EB;
    border-radius: 12px;
    padding: 40px 36px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 2px 16px rgba(107,63,160,0.08);
}
.plt-auth-card-wide { max-width: 820px; }

/* Typography within card ------------------------------------ */
.plt-auth-card h1,
.plt-auth-card h3 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #2A1240 !important;
    margin: 0 0 6px !important;
    line-height: 1.3;
    font-family: 'Nunito', sans-serif !important;
}
.plt-auth-sub {
    font-size: 13px;
    color: #6B7280;
    margin: 0 0 10px;
    line-height: 1.5;
}
.plt-auth-trial-note {
    font-size: 12px;
    color: #6B3FA0;
    font-weight: 700;
    margin: 0 0 24px;
}
.plt-auth-trial-note a { color: #6B3FA0; text-decoration: none; }
.plt-auth-trial-note a:hover { text-decoration: underline; }

/* Form elements --------------------------------------------- */
.plt-auth-card .btn-primary {
    background: #6B3FA0 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: 'Nunito', sans-serif !important;
    cursor: pointer;
}
.plt-auth-card .btn-primary:hover,
.plt-auth-card .btn-primary:focus { background: #5A2E90 !important; }

/* Register two-column layout -------------------------------- */
.plt-auth-register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Right column features ------------------------------------- */
.plt-auth-features-hd {
    font-size: 18px;
    font-weight: 800;
    color: #2A1240;
    margin: 0 0 6px;
    font-family: 'Nunito', sans-serif;
}
.plt-auth-features-sub {
    font-size: 13px;
    color: #6B7280;
    margin: 0 0 20px;
    line-height: 1.5;
}
.plt-auth-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.plt-auth-feature i {
    font-size: 18px;
    color: #6B3FA0;
    flex-shrink: 0;
    margin-top: 1px;
}
.plt-auth-feature strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2A1240;
    margin-bottom: 2px;
    font-family: 'Nunito', sans-serif;
}
.plt-auth-feature p {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}
.plt-auth-trust {
    border-top: 0.5px solid #E5E7EB;
    padding-top: 16px;
    margin-top: 8px;
    font-size: 12px;
    color: #9CA3AF;
    font-style: italic;
    line-height: 1.5;
}

/* Service cards (Register right column) --------------------- */
.plt-auth-service-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #F9F5FF;
    border: 1px solid #EDE9FE;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 10px;
}
.plt-auth-service-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #6B21A8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plt-auth-service-icon i {
    font-size: 16px;
    color: #fff;
}
.plt-auth-service-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2A1240;
    margin-bottom: 2px;
    font-family: 'Nunito', sans-serif;
}
.plt-auth-service-card p {
    font-size: 12px;
    color: #6B7280;
    margin: 0 0 4px;
    line-height: 1.5;
}
.plt-auth-service-price {
    font-size: 11px;
    font-weight: 700;
    color: #6B21A8;
    letter-spacing: 0.01em;
}

/* Responsive ------------------------------------------------ */
@media (max-width: 680px) {
    .plt-auth-register-grid { grid-template-columns: 1fr; }
    .plt-auth-card { padding: 28px 20px; }
    .plt-auth-main { padding: 24px 12px; }
    .plt-auth-header { padding: 12px 16px; }
}
