/* Üyelik formu stil */
.container {
    width: 80%;
    max-width: 900px;
    background: white;
    padding: 30px;
    margin: 40px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.form-row {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px; /* Inputlar arasına boşluk ekliyoruz */
    align-items: center;
}

/* Label stilini düzenleyelim */
label {
    font-weight: bold;
    color: #34495e;
    margin-bottom: 5px;
    display: inline-block;
    width: 100px; /* Her bir label için genişlik */
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
    width: calc(50% - 110px); /* Yarı genişlik ayarlaması yapıldı */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}

button.register-button {
    background-color: #2c3e50;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

button.register-button:hover {
    background-color: #1a252f;
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link a {
    color: #2c3e50;
    text-decoration: none;
}

.login-link a:hover {
    color: #1abc9c;
}

/* Mobil uyumlu stil */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    label {
        width: 100%; /* Label'ın genişliği %100 olacak */
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"] {
        width: 100%; /* Input kutuları da %100 olacak */
    }
}
