* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    height: 100vh;
    overflow: hidden;
    background-color: #ffffff;
}

.split-screen {
    display: flex;
    height: 100%;
    width: 100%;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.image-section {
    width: 50%;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.form-section {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.header-branding {
    position: absolute;
    top: 40px;  
    left: 40px; 
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-logo {
    width: 65px; 
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.top-logo-text {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
}

.form-container {
    width: 100%;
    max-width: 400px;
}

.form-container h1 {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #111;
    outline: none;
    transition: 0.3s;
}

.input-group input:hover {
    border-color: #9ca3af; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); 
}

.input-group input:focus {
    border-color: #43982c; 
    box-shadow: 0 0 0 3px rgba(67, 152, 44, 0.15); 
}

.input-group input::placeholder {
    color: #9ca3af;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.go-back {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.go-back:hover {
    text-decoration: underline;
}

.send-btn {
    width: 100%;
    padding: 14px;
    background-color: #43982c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.send-btn:hover {
    background-color: #357a22;
}

.bottom-copyright {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
    transition: 0.3s ;
}

.bottom-copyright a {
    color: #43982c;
}

.bottom-copyright a:hover {
    color: #306c1f;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---  MOBİL CİHAZ UYUMLULUĞU (RESPONSIVE) --- */
@media (max-width: 768px) {
    body {
        overflow-y: auto; 
    }
    
    .split-screen {
        flex-direction: column; 
    }

    .form-section {
        width: 100%; 
        min-height: 100vh;
        padding: 40px 20px 80px 20px;
    }
    
    .header-branding {
        top: 20px;
        left: 20px;
    }

    .top-logo {
        width: 50px; 
    }

    .top-logo-text {
        font-size: 42px;
    }

    .bottom-copyright {
        bottom: 15px;
        font-size: 12px;
    }

    .image-section {
        display: none;
    }
}