body {
    background-color: black;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    color: #fff;
    text-align: center;
    font-family: arial;
    margin: 20px;
    font-size: 28px;  /* Mobil için biraz daha küçük */
    padding: 10px;
}

.kutu-1 {
    background-color: transparent;
    width: 90%;  /* Mobilde genişliği %90 yaptım */
    max-width: 300px;  /* Genişlik sınırı */
    height: auto;
    margin: 10px auto;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button {
    background-color: #fff;
    color: black;
    width: 100%;
    height: 50px;
    font-size: medium;  /* Font boyutunu biraz küçülttüm */
    font-family: arial;
    border: 0px;
    border-radius: 9px;
    margin: 10px 0;
}

.button:hover {
    background-color: black;
    transition: 0.5s;
    cursor: pointer;
    border-radius: 9px;
    color: #fff;
    border: 1px solid #fff;
}

.textbox {
    background-color: white;
    height: 30px;
    display: block;
    margin: 10px 0;
    border: white solid 2px;
    border-radius: 5px;
    width: 100%;
    font-size: 14px; /* Mobil için font boyutunu biraz küçülttüm */
}

select {
    width: 100%;
    height: 35px;
    display: block;
    margin: 10px 0;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: transparent;
    color: #fff;
}

.kutu-2 {
    background-color: transparent;
    margin: 20px auto;
    width: 100%;
    max-width: 300px;
    height: 50px;
    border-radius: 10px;
    visibility: hidden;
    color: #fff;
    text-align: center;
    font-size: 20px;  /* Font boyutunu küçülttüm */
    font-family: Arial;
    line-height: 50px;
    border: 1px solid #fff;
}

.kutu-2:hover {
    background-color: #fff;
    color: black;
    transition: 0.5s;
    transform: scale(1.05);
}

.textbox:focus {
    border-color: blue;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 255, 0.5);
}

.textbox::placeholder {
    color: gray;
    opacity: 0.8;
}

/* Mobil ekranlarda özelleştirme */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 24px;  /* Başlık boyutunu mobilde biraz daha küçültüyoruz */
        margin: 10px 0;
    }

    .kutu-1, .kutu-2 {
        width: 100%;
        max-width: 300px;  /* Maksimum genişliği sınırlıyoruz */
    }

    .textbox, select {
        width: 100%;
    }

    .button {
        width: 250px;
        height: 45px;
        font-size: medium;
    }
}