/* assets/css/auth.css */

/* Reset/Override any limiting global styles for auth pages */
body.auth-page {
    background-color: #000;
    overflow-x: hidden;
}

/* Ensure global wrapper doesn't constrain us */
body.auth-page .spotify-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Override main-view to be a full centered container */
body.auth-page .main-view {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1;
}

/* The actual center container */
.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.auth-card {
    width: 100%;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.auth-header-text {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 12px;
    color: white;
    transition: 0.3s;
    font-size: 1rem;
}

.auth-input:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.auth-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: var(--accent);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    margin-bottom: 15px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
    background: var(--accent-hover);
}

.auth-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 25px 0;
}

.auth-footer {
    color: #888;
    font-size: 0.9rem;
}

.auth-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
}

.auth-link:hover {
    text-decoration: underline;
    color: var(--accent);
}

.forgot-pass-link {
    display: block;
    margin-bottom: 20px;
    color: #888;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.2s;
}

.forgot-pass-link:hover {
    color: white;
}