/* Genel ayarlar */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #0a0f2b;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

a { text-decoration: none; color: inherit; }

/* Galaksi arkaplan */
#galaxy-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1e1f4f 0%, #0a0f2b 70%);
    overflow: hidden;
    z-index: 0;
}

/* Form container */
.account-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    z-index: 1;
    position: relative;
}

.form-container {
    background: rgba(0,0,0,0.7);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,191,255,0.4);
    max-width: 400px;
    width: 100%;
}

/* Form toggle buttons */
.form-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.form-toggle button {
    background: #1e90ff;
    border: none;
    padding: 12px 25px;
    margin: 0 10px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-toggle button.active,
.form-toggle button:hover {
    background: #00bfff;
    transform: scale(1.05);
}

/* Form stilleri */
.account-form {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.account-form.active { display: flex; }

.account-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #00bfff;
}

.account-form input {
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
}

.account-form button {
    background: #00bfff;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-form button:hover {
    background: #1e90ff;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 500px) {
    .form-container { padding: 40px 20px; }
    .form-toggle button { padding: 10px 20px; font-size: 0.9rem; }
    .account-form h2 { font-size: 1.5rem; }
}
