body {
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    max-width: 900px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    overflow: hidden;
    display: flex;
    min-height: 600px;
}

.images {
    flex: 0 0 380px;
    background: #fff;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .images img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 300px;
    }

.content {
    flex: 1;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 260px;
    max-width: 500px;
    margin: auto;
}

.title-login {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
    text-align: center;
}

.comment-form input {
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    padding: 12px 40px 12px 16px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 0;
    box-sizing: border-box;
}

.mb-3 {
    margin-bottom: 16px;
    position: relative;
}

.icon {
    position: absolute;
    right: 16px;
    top: 12px;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
}

.password-toggle {
    cursor: pointer;
    pointer-events: auto;
    transition: opacity 0.2s;
}

.password-toggle:hover {
    opacity: 0.7;
}

.account-type-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.account-type-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-type-btn svg {
    width: 20px;
    height: 20px;
}

.account-type-btn:hover {
    border-color: #ff8800;
    color: #ff8800;
    background: #fff7e6;
}

.account-type-btn.active {
    border-color: #ff6600;
    background: linear-gradient(90deg, #ff6600 0%, #ff8800 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 136, 0, 0.2);
}

.comment-form label {
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
    color: #222;
}

.title-forgot {
    text-align: right;
    margin-bottom: 16px;
}

    .title-forgot a {
        font-size: 14px;
        font-weight: 400;
        color: #ff8800;
        text-decoration: none;
    }

.sc-button {
    background: linear-gradient(90deg, #ff6600 0%, #ff8800 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(255, 136, 0, 0.08);
}

    .sc-button:hover {
        background: linear-gradient(90deg, #ff8800 0%, #ff6600 100%);
    }

.text-box {
    font-size: 14px;
    margin-bottom: 16px;
}

    .text-box a {
        font-weight: 700;
        color: #ff6600;
        text-decoration: none;
        margin-left: 4px;
    }

.texts.line {
    font-size: 12px;
    color: #888;
    margin-bottom: 16px;
}

.button-box {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 8px;
}

.hover-login-social {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #ff8800;
    background: #fff;
    color: #ff6600;
    font-weight: 600;
    text-decoration: none;
    transition: box-shadow 0.2s, background 0.2s;
}

    .hover-login-social:hover {
        box-shadow: 0 2px 8px rgba(255, 136, 0, 0.08);
        background: #fff7e6;
        color: #ff8800;
    }

/* Şirket seçici ve butonlar için stiller */
.form-select {
    padding: 12px 40px 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    background: #fff;
    color: #333;
    transition: border-color 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.form-select:focus {
    outline: none;
    border-color: #ff8800;
    box-shadow: 0 0 0 2px rgba(255, 136, 0, 0.1);
}

.btn-outline-primary {
    padding: 10px 16px;
    border: 1px solid #ff8800;
    border-radius: 8px;
    background: #fff;
    color: #ff6600;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: linear-gradient(90deg, #ff6600 0%, #ff8800 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 136, 0, 0.2);
}

.btn-outline-secondary {
    padding: 10px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-secondary:hover {
    background: #f5f5f5;
    border-color: #999;
}

.text-muted {
    color: #888;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

@media (max-width: 900px) {
    .login-container {
        flex-direction: column;
        min-height: unset;
    }

    .images {
        border-radius: 16px 16px 0 0;
        width: 100%;
        min-height: 180px;
    }

        .images img {
            width: 100%;
            height: 180px;
        }

    .content {
        padding: 24px 16px;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .content {
        padding: 16px 8px;
    }

    .title-login {
        font-size: 1.5rem;
    }
}
