* {
    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;
}

.left-side {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.top-logo {
    position: absolute;
    top: 40px;  
    left: 40px; 
    width: 80px;
    height: auto;
    object-fit: contain;
}

.form-container {
    width: 100%;
    max-width: 400px;
}

.form-container h1 {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.subtitle {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 35px;
}

.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;
}

.password-wrapper {
    position: relative; 
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%); 
    color: #9ca3af;
    cursor: pointer;
    user-select: none; 
    transition: color 0.2s;
}

.toggle-password:hover {
    color: #4b5563; 
}

#password {
    padding-right: 40px; 
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #374151;
    font-weight: 500;
}

.remember-me input {
    accent-color: #43982c; 
    cursor: pointer;
    width: 15px;
    height: 15px;
}

.forgot-password {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

.sign-in-btn {
    width: 100%;
    padding: 14px;
    background-color: #43982c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    transition: 0.3s;
}

.sign-in-btn:hover {
    background-color: #357a22;
}

.signup-text {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #6b7280;
}

.signup-text a {
    color: #43982c; 
    text-decoration: none;
    font-weight: 600;
}

.signup-text a:hover {
    text-decoration: underline;
}

.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;
}

.right-side {
    width: 50%;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.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; 
    }

    .left-side {
        width: 100%; 
        min-height: 100vh;
        padding: 40px 20px 80px 20px;
    }
    
    .top-logo {
        top: 20px;
        left: 20px;
        width: 70px; 
    }

    .bottom-copyright {
        bottom: 15px;
        font-size: 12px;
    }

    .right-side {
        display: none;
    }
}