/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    background: url('/Content/images/backgroundwithoutchatbubble.jpeg') no-repeat center top;
    background-size: cover;
    display: flex;
    justify-content: center;
    background-position-y: -40px;
    font-family: 'GothamBlack', sans-serif !important;
    font-weight: 900;
}
.firstBody {
    background: url('/Content/images/backgorund.jpg') no-repeat center top !important;
}
/* İçerik kutusu TAM ORTA BÖLGEYE ALINIYOR */
.main-container {
    width: 100%;
    max-width: 480px;
    padding: 0 20px;
    margin-top: 34.5vh;
    text-align: center;
}

/* Başlık */
.title-area h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.title-area p {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* Input */
.input-custom {
    width: 100%;
    padding: 16px 20px;
    background: #D72027;
    border-radius: 35px;
    border: none;
    color: #fff;
    font-size: 1.1rem;
}

    .input-custom::placeholder {
        color: #ffffff;
        opacity: 0.9;
    }

/* Buton */
.btn-dark-submit {
    width: 160px;
    padding: 12px 0;
    background: #000;
    color: #ffffff;
    border-radius: 14px;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
}

@font-face {
    font-family: 'GothamBlack';
    src: url('/Content/fonts/Gotham-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}


/* FORM 2 – özel ayarlar */

/* Arka plan yukarıdan biraz daha başlasın */
.form2-container {
    margin-top: 30vh; /* Form1 ile aynı hizaya getiriyoruz */
    text-align: center;
}

    /* Başlık */
    .form2-container .title-area h1 {
        font-family: 'GothamBlack', sans-serif;
        font-size: 1.8rem;
        font-weight: 900;
        color: #fff;
        line-height: 1.3;
        margin-bottom: 40px;
    }

/* --- BUTONLAR --- */

/* Flex kapsayıcı: iki buton yan yana */
.btn-row {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Eşit genişlik + tek satır */
.btn-form2 {
    flex: 1; /* iki buton eşit genişlik */
    height: 110px; /* sabit yükseklik */
    background: #D72027;
    color: #fff;
    font-family: 'GothamBlack', sans-serif;
    font-size: 1.4rem;
    border-radius: 25px;
    border: none;
    font-weight: 900;
    text-align: center;
    /* Dikey yatay ortalama */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Butona tıklama hissi */
    transition: transform 0.12s ease;
}

    /* Butona basılınca biraz zoom efekti */
    .btn-form2:active {
        transform: scale(0.94);
    }

    /* “NE / SÖZÜ?” satır kırma düzeni */
    .btn-form2 br {
        line-height: 0.7;
    }



/* ERROR SCREEN */
.error-container {
    margin-top: 37vh; /* Form 1 ve Form 2 ile aynı yükseklik */
    text-align: center;
}

    .error-container .title-area h1 {
        font-family: 'GothamBlack', sans-serif;
        font-size: 1.8rem;
        font-weight: 900;
        color: #fff;
        line-height: 1.3;
    }


/* Register form inputları */
.register-form .input-custom {
    width: 100%;
    padding: 16px 20px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    color: #000;
    font-family: 'GothamBlack', sans-serif;
}

.register-form .form-check-label {
    font-size: 0.9rem;
    font-family: 'GothamBlack', sans-serif;
}

.register-form .form-check-input {
    transform: scale(1.3);
    margin-right: 10px;
}

/* Gönder butonu Form 2 ile aynı */
.btn-form1 {
    flex: none;
    height: 70px;
    background: #D72027;
    color: #fff;
    font-family: 'GothamBlack', sans-serif;
    font-size: 1.4rem;
    border-radius: 25px;
    border: none;
    font-weight: 900;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reg-container {
    margin-top: 20vh; 
    text-align: center;
}

    /* Başlık */
    .reg-container .title-area h1 {
        font-family: 'GothamBlack', sans-serif;
        font-size: 1.8rem;
        font-weight: 900;
        color: #fff;
        line-height: 1.3;
        margin-bottom: 40px;
    }
.kvkk-row {
    display: flex;
    align-items: center; /* Checkbox ve metni dikey hizalar */
    gap: 10px; /* Checkbox ile metin arası boşluk */
}

    .kvkk-row label {
        color: #fff;
        font-family: 'GothamBlack', sans-serif;
        font-size: 0.95rem;
        line-height: 1.3;
    }