/* ===================================
   Uniq Türkiye - İş Başvuru Formu CSS (form.css)
   =================================== */

/*** 
====================================================================
Page Title
====================================================================
***/

.page-title {
    position: relative;
    background-repeat: no-repeat;
    background-position: center 45%;
    background-size: cover;
    padding: 150px 0 150px;
    min-height: 250px;
}

@media only screen and (max-width: 767px) {
.page-title {
    padding: 70px 0 60px;
}
}
/*
.page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #131313;
    opacity: 0.7;
    content: "";
}
*/
.page-title .title-outer {
    text-align: center;
}

.page-title .title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 17px;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeInUp 1s ease 0.3s forwards;
}

@keyframes titleFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 767px) {
.page-title .title {
    font-size: 54px;
    margin-bottom: 10px;
}
}

.page-title .text {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.05em;
    max-width: 520px;
}

/* ===================================
   Job Application Form Section Styles
   =================================== 
*/

.job-application-section {
    min-height: 100vh; /* Tüm ekran yüksekliği */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.application-form-container {
    border-radius: 20px;
    padding: 3.5rem;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}
  

.sec-title h2 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
}

.sec-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #4A7BC0, #1d4ed8);
    border-radius: 2px;
}

.sec-title p {
    font-family: 'Montserrat', sans-serif;
    color: #9e9e9e;
    font-size: 1.1rem;
    font-weight: 200;
    margin-bottom: 2rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    max-width: 100%;
}

.form-section:last-of-type {
    margin-bottom: 2rem;
}

.form-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}

.form-section h3 i {
    color: #4A7BC0;
    font-size: 1.2rem;
}

/* Form Groups */
.job-application-form .form-group {
    margin-bottom: 1.75rem;
}

.job-application-form .form-group:last-child {
    margin-bottom: 0;
}

.job-application-form label {
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 0.75rem;
    color: #9e9e9e;
    font-weight: 500;
    font-size: 1rem;
}

.job-application-form input,
.job-application-form select,
.job-application-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
    font-family: inherit;
}

.job-application-form input:focus,
.job-application-form select:focus,
.job-application-form textarea:focus {
    outline: none;
    border-color: #4A7BC0;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.job-application-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.job-application-form .theme-btn {
    background-color: #4A7BC0;
    width: 100%;
    padding: 5px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Form row alignment */
.job-application-form .row {
    margin: 0 -12px;
    margin-bottom: 0.5rem;
}

.job-application-form .row > [class*="col-"] {
    padding: 0 12px;
}

/* Checkbox Styles */
.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500 !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    background: #fff;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #4A7BC0;
    border-color: #4A7BC0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    color: #4A7BC0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #6B8FCC;
    text-decoration: underline;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    .job-application-section {
        padding: 60px 0;
    }
    
    .application-form-container {
        padding: 2rem;
    }
    
    .sec-title h2 {
        font-size: 2rem;
    }
    
    .form-section {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .job-application-form .form-group {
        margin-bottom: 1.5rem;
    }
    
    .job-application-form .row {
        margin: 0 -8px;
    }
    
    .job-application-form .row > [class*="col-"] {
        padding: 0 8px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .job-application-section {
        padding: 40px 0;
    }
    
    .application-form-container {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .sec-title h2 {
        font-size: 1.8rem;
    }
    
    .sec-title p {
        font-size: 1rem;
    }
    
    .form-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .job-application-form .form-group {
        margin-bottom: 1.5rem;
    }
    
    .job-application-form input,
    .job-application-form select,
    .job-application-form textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
        left: 5px;
        top: 1px;
        width: 5px;
        height: 8px;
    }
}
