body {
    font-family: 'Arial', sans-serif;
    font-size: 40px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120vh;
    background: linear-gradient(135deg, #FFCC99, #FFD699);
    background-image: url('girisbackground.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height:1000px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input {
    margin: 15px 0;
    padding: 20px;
    border-radius: 25px;
    border: 3px solid #3498db;
    width: 80%;
    max-width: 550px;
    font-size: 24px;
    transition: border-color 0.3s ease-in-out;
}

input:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    cursor: pointer;
    width: 400px;
    max-width: 750px;
    height: 150px; /* Büyütülen boyut */
    font-size: 28px;
    border: none;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: linear-gradient(135deg, #2980b9, #2471a3);
}

.butons {
    margin-top: 20px;
    
}
