<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Ãœ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 */
    }
}
</pre></body></html>