/* Varsayılan font ve genel görünüm */
body {
    font-family: 'Philosopher', sans-serif;
    color: #fff;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

/* Kutular, form alanları */
.container {
    background: #000;
    width: 360px;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid white;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Philosopher', sans-serif;
    color: #fff;
}

input {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #000;
    color: #fff;
    font-family: 'Philosopher', sans-serif;
}

    input::placeholder {
        color: #fff;
        opacity: 0.7;
    }

button {
    width: 100%;
    background: #000;
    color: #fff;
    border: 2px solid white;
    padding: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
    font-family: 'Philosopher', sans-serif;
}

    button:hover {
        background: #fff;
        color: #000;
    }

.toggle {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #fff;
}

    .toggle a {
        color: #fff;
        text-decoration: none;
    }

        .toggle a:hover {
            text-decoration: underline;
        }
