.login-container {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 40px;
    background: #FAFAFA;
}

.login-card {
    background: #fff;
    border: 2px solid #1a1a1a;
    padding: 60px 50px;
    max-width: 450px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 50px;
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.login-subtitle {
    font-size: 16px;
    color: #666;
}

.login-subtitle a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
}

.login-subtitle a:hover {
    color: #666;
    border-bottom-color: #666;
}

.social-login {
    margin-bottom: 40px;
}

.social-btn {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: 2px solid #1a1a1a;
    background: #fff;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.social-btn.spotify {
    background: #1DB954;
    border-color: #1DB954;
    color: #fff;
}

.social-btn.spotify:hover {
    background: #1ed760;
    border-color: #1ed760;
}

.social-btn.apple {
    background: #000;
    border-color: #000;
    color: #fff;
}

.social-btn.apple:hover {
    background: #333;
    border-color: #333;
}

.divider {
    position: relative;
    text-align: center;
    margin: 40px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    background: #fff;
    padding: 0 20px;
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    background: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-error {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 8px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #1a1a1a;
    background: #fff;
}

.checkbox:checked {
    background: #1a1a1a;
}

.checkbox-label {
    font-size: 14px;
    color: #666;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #fff;
    border: 2px solid #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.submit-btn:hover {
    background: #fff;
    color: #1a1a1a;
}

.back-link {
    text-align: center;
}

.back-link a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .login-container {
        padding: 140px 20px 20px;
    }

    .login-card {
        padding: 40px 30px;
    }

    .login-title {
        font-size: 24px;
    }
}