/* Login sayfası stilleri */

.login-page {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px 48px;
    background: #ececec;
}

.login-card {
    background: #ffffff;
    max-width: 420px;
    width: 100%;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    text-align: center;
    border: 1px solid rgba(20, 20, 20, 0.08);

    color: #141414;
    background: #fefefe;

  

    border-color: #dfdfdf;
    border-radius: 12px;
}

.login-card h1 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.login-card p {
    color: #141414;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.login-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
    background: #ffffff;
    color: #141414;
    border: 2px solid #ddd;
    box-shadow: 0 8px 18px rgba(23, 23, 23, 0.08);
    gap: 10px;
}

.google-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(23, 23, 23, 0.12);
}

.google-icon {
    display: inline-flex;
}

.google-text {
    font-weight: 600;
}


@media (max-width: 480px) {
    .login-card {
        padding: 28px 22px;
    }

    .primary-btn,
    .google-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}