/* =========================
   SIGN UP SAYFASI
========================= */

.auth-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* kart */
.auth-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}

/* başlık */
.auth-card h1 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 22px;
}

/* form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-form label {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* inputlar */
.auth-form input {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.auth-form input:focus {
    outline: none;
    border-color: #222;
}

/* buton */
.auth-button {
    margin-top: 8px;
    padding: 12px;
    border-radius: 14px;
    border: none;
    background: #222;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.auth-button:hover {
    opacity: 0.9;
}

/* alt metin */
.auth-footer {
    margin-top: 20px;
    font-size: 13px;
    text-align: center;
    color: #555;
}

.auth-footer a {
    font-weight: 600;
    margin-left: 4px;
}