

/* Form kutusu */
.reg-container {
    width: 100%;
    max-width: 550px;
    min-height: 70vh;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 130px auto;
}

.reg-logo {
    text-align: center;
    margin-bottom: 30px; /* 20px’ten 10px’e düşürdük, böylece 10px yukarı taşınır */
    padding-bottom: 20px;
    border-bottom: 1px solid #007782;
}
.reg-logo-text {
    font-size: 32px;
    font-family: "Lobster", cursive;
    color: #007782;
}

h2.text-center {
    font-size: 22px;
    margin-bottom: 25px;
    color: #333;
}

.reg-form-group {
    margin-bottom: 14px;
}

.reg-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.reg-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border 0.2s;
}

.reg-form-group input:focus {
    border-color: #007782;
    outline: none;
    box-shadow: 0 0 0 2px #e1f5f4;
}

.reg-error-text {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.reg-login-button {
    width: 100%;
    background-color: #007782;
    color: white;
    padding: 11px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reg-login-button:hover {
    background-color: #005e66;
}

.reg-sosyal-girisler {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.reg-social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    color: #333;
}

.reg-social-button.reg-google img {
    width: 20px;
}

.reg-phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ccc;
    padding: 8px 10px;
    border-radius: 6px;
}

.reg-phone-icon {
    width: 20px;
}

/* Orijinal stil ayarların burada kalabilir */

/* Tablet ve Altı (≤991px) */
@media (max-width: 991px) {
    .reg-container {
        width: 92%;
        padding: 24px 20px;
        margin: 100px auto;
        border-radius: 10px;
    }

    .reg-logo-text {
        font-size: 28px;
    }

    h2.text-center {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .reg-form-group input {
        font-size: 15px;
        padding: 10px;
    }

    .reg-login-button {
        padding: 10px;
        font-size: 15px;
    }

    .reg-social-button {
        font-size: 14px;
        padding: 9px;
    }

    .reg-phone-input-wrapper {
        padding: 6px 8px;
        gap: 8px;
    }

    .reg-phone-icon {
        width: 18px;
    }
}

/* Küçük Mobil Cihazlar (≤575px) */
@media (max-width: 575px) {
.reg-container {
    margin: 0 auto;
    padding: 160px 30px 30px 30px; /* Üst boşluk 140px yapıldı */
}


    .reg-logo-text {
        font-size: 24px;
    }

    h2.text-center {
        font-size: 18px;
    }

    .reg-form-group label {
        font-size: 14px;
    }

    .reg-form-group input {
        font-size: 14px;
    }

    .reg-login-button {
        font-size: 14px;
    }

    .reg-social-button {
        gap: 8px;
        font-size: 13px;
    }
}
