﻿/* =========================================================

   REGISTER PAGE STYLES - Turizm360

   ========================================================= */



/* Register Section */

.register-section {

    background: #f8f9fa;

    padding: 3rem 0;

}



/* Register Box */

.register-box {

    max-width: 750px;

    margin: 0 auto;

    background: #ffffff;

    border-radius: 16px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

    padding: 2rem;

}



/* Header */

.register-header {

    text-align: center;

    margin-bottom: 1.5rem;

}



.register-header h2 {

    font-size: 1.5rem;

    font-weight: 700;

    color: #1a1f2e;

    margin-bottom: 0.3rem;

}



.register-header p {

    color: #6c757d;

    font-size: 0.9rem;

    margin: 0;

}



/* Two Column Layout */

.register-content {

    display: flex;

    gap: 2rem;

}



.register-left,

.register-right {

    flex: 1;

}



/* Section Labels */

.section-label {

    font-size: 0.8rem;

    font-weight: 600;

    color: #0dcaf0;

    margin-bottom: 1rem;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



.section-label i {

    margin-right: 0.3rem;

}



/* Form Styles */

.register-form .form-group {

    margin-bottom: 1rem;

}



.register-form label {

    display: block;

    font-size: 0.85rem;

    font-weight: 500;

    color: #333333;

    margin-bottom: 0.4rem;

}



.register-form .form-control {

    height: 44px;

    border: 1px solid #e0e0e0;

    border-radius: 8px;

    font-size: 0.9rem;

    padding: 0.5rem 1rem;

    transition: all 0.3s ease;

}



.register-form .form-control:focus {

    border-color: #0dcaf0;

    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);

}



.register-form .form-control::placeholder {

    color: #aaa;

}



/* Input with Icon */

.input-icon-wrapper {

    position: relative;

}



.input-icon-wrapper > i {

    position: absolute;

    left: 1rem;

    top: 50%;

    transform: translateY(-50%);

    color: #999999;

    font-size: 0.9rem;

}



.input-icon-wrapper .form-control {

    padding-left: 2.5rem;

}



.btn-toggle-password {

    position: absolute;

    right: 1rem;

    top: 50%;

    transform: translateY(-50%);

    background: none;

    border: none;

    color: #999999;

    cursor: pointer;

    padding: 0;

}



.btn-toggle-password:hover {

    color: #6c757d;

}



/* Vertical Divider */

.register-divider {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

    width: 1px;

    background: #e0e0e0;

}



.register-divider span {

    background: #ffffff;

    padding: 0.5rem;

    color: #cccccc;

    font-size: 0.9rem;

    position: relative;

    z-index: 1;

}



/* Checkbox */

.register-form .form-check {

    margin-bottom: 1rem;

}



.register-form .form-check-input:checked {

    background-color: #0dcaf0;

    border-color: #0dcaf0;

}



.register-form .form-check-label {

    font-size: 0.8rem;

    color: #6c757d;

    line-height: 1.4;

}



.register-form .form-check-label a {

    color: #0dcaf0;

    text-decoration: none;

}



.register-form .form-check-label a:hover {

    text-decoration: underline;

}



/* Register Button */

.btn-register {

    width: 100%;

    padding: 0.75rem;

    background: #0dcaf0;

    border: none;

    border-radius: 8px;

    color: #ffffff;

    font-size: 0.95rem;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;

}



.btn-register:hover {

    background: #e67e00;

    color: #ffffff;

}



/* Social Divider */

.social-divider {

    display: flex;

    align-items: center;

    margin: 1rem 0;

}



.social-divider::before,

.social-divider::after {

    content: '';

    flex: 1;

    height: 1px;

    background: #e0e0e0;

}



.social-divider span {

    padding: 0 0.75rem;

    color: #999999;

    font-size: 0.75rem;

}



/* Social Buttons */

.register-social {

    display: flex;

    gap: 0.5rem;

}



.register-social .btn-social {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.5rem;

    padding: 0.6rem 1rem;

    border: 1px solid #e0e0e0;

    border-radius: 8px;

    background: #ffffff;

    font-size: 0.8rem;

    font-weight: 500;

    color: #333333;

    cursor: pointer;

    transition: all 0.3s ease;

}



.register-social .btn-social:hover {

    background: #f8f9fa;

    border-color: #cccccc;

}



.register-social .btn-social i {

    font-size: 1rem;

}



.register-social .btn-facebook i {

    color: #1877f2;

}



/* Footer */

.register-footer {

    text-align: center;

    margin-top: 1.5rem;

    padding-top: 1.5rem;

    border-top: 1px solid #eeeeee;

}



.register-footer p {

    color: #6c757d;

    font-size: 0.9rem;

    margin: 0;

}



.register-footer a {

    color: #0dcaf0;

    font-weight: 600;

    text-decoration: none;

}



.register-footer a:hover {

    text-decoration: underline;

}



/* Responsive */

@media (max-width: 768px) {

    .register-content {

        flex-direction: column;

        gap: 1.5rem;

    }



    .register-divider {

        width: 100%;

        height: 1px;

        flex-direction: row;

    }



    .register-divider span {

        padding: 0 1rem;

    }

}



@media (max-width: 576px) {

    .register-section {

        padding: 1.5rem 0;

    }



    .register-box {

        padding: 1.25rem;

    }



    .register-header h2 {

        font-size: 1.3rem;

    }



    .register-social {

        flex-direction: column;

    }

}











/* Captcha Styles */
.captcha-group {
    margin-bottom: 1rem;
}

.captcha-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.captcha-image-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.captcha-image {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    height: 50px;
    width: 50%;
}

.captcha-refresh-btn {
    width: 50%;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f9fa;
    color: #1e3a5f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.captcha-refresh-btn:hover {
    background: #1e3a5f;
    color: #fff;
    border-color: #1e3a5f;
}

.captcha-refresh-btn i {
    font-size: 18px;
}

.captcha-input {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    text-align: center;
}

.captcha-input::placeholder {
    letter-spacing: normal;
    font-weight: normal;
    text-transform: none;
}

/* Register Bottom - Sözleşme ve Kayıt Ol */
.register-bottom {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.register-bottom .form-check {
    margin-bottom: 0;
}

.register-bottom .btn-register {
    width: 100%;
    max-width: 350px;
}
