.application-form {
    width: 80%;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
}

.application-form h2 {
    text-align: center;
    color: #333;
	margin-bottom: 50px;
}

.form-row {
    display: flex;
    justify-content: space-between;
}

.column {
    width: 48%;
}

form fieldset {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

legend {
    font-weight: normal;
    color: #333;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"], input[type="tel"], input[type="email"], select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Adres alanı için özel stil */
textarea#unique_address {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 105px; /* Yüksekliği arttırdık */
    resize: vertical; /* İsteğe bağlı: kullanıcının yüksekliği ayarlayabilmesi için */
}



button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #45a049;
}
