@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.auth-page-container {
    display: flex;
    height: 100vh;
    align-items: stretch;
}

.left-section {
    background: url('../images/programmer.webp') no-repeat center center;
    background-size: 80% auto;
    background-color: #e9ecef;
    display: none; /* Mobil cihazlarda gizli */
}

.right-section {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f7f6;
    padding: 20px;
}

.auth-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.auth-form h2 {
    color: #212529;
    margin-bottom: 35px;
    font-weight: 700;
}

.auth-title i {
    color: #0d6efd;
    margin-right: 10px;
}

.form-control-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.form-control-wrapper .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
}

.form-control-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
    color: #212529;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
}

.form-control-wrapper input:focus {
    outline: none;
    border-color: #0d6efd;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.options-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me label {
    color: #495057;
    cursor: pointer;
}

.forgot-password a {
    color: #0d6efd;
    text-decoration: none;
}
.forgot-password a:hover {
    text-decoration: underline;
}

.auth-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #0d6efd;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.auth-form button:hover {
    background-color: #0b5ed7;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #adb5bd;
    margin: 25px 0;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.separator:not(:empty)::before {
    margin-right: .25em;
}

.separator:not(:empty)::after {
    margin-left: .25em;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.social-icon:hover {
    opacity: 0.9;
}

.google { background-color: #DB4437; }
.facebook { background-color: #4267B2; }
.twitter { background-color: #1DA1F2; }

.bottom-link {
    font-size: 0.9rem;
    color: #495057;
}

.bottom-link a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.bottom-link a:hover {
    text-decoration: underline;
}


@media screen and (min-width: 992px) {
    .left-section {
        display: block;
        flex: 1;
    }
}

.g-recaptcha {
    margin: 0 auto;
    display: table;
}
