/* Authentication Styles - Login page */

.login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
}

.login-page h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.login-page p {
    color: #888;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.btn-google {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #fff;
    border: none;
    border-radius: 8px;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.btn-google svg {
    width: 24px;
    height: 24px;
}

.login-error {
    color: #ff4757;
    margin-top: 20px;
    padding: 15px 25px;
    background: rgba(255,71,87,0.1);
    border-radius: 8px;
    display: none;
}

.login-error.show {
    display: block;
}

@media (max-width: 768px) {
    .login-page h1 {
        font-size: 1.8rem;
    }
}
