/* <!-- Login İçin --> */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fa;
}

.navbar-brand h1 {
    font-family: 'Playfair Display', serif;
}

.login-container {
    display: flex;
    flex-direction: row;
    width: 900px;
    height: 600px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 50px auto;
}

.left-side {
    flex: 1;
    background: linear-gradient(135deg, #00a86b, #008080);
    color: white;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left-side::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') 0 0 / 20% 20%;
    animation: rotate 30s linear infinite;
    z-index: 0;
}

.left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.payment-options {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.payment-options img {
    height: 30px;
    margin: 0 5px;
}	

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.right-side {
    flex: 1;
    background: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-control-user {
    border-radius: 5px;
    font-size: 16px;
    padding: 10px;
    margin-bottom: 15px;
}

.form-control-user:focus {
    border-color: #00a86b;
    box-shadow: none;
}

.btn-user {
    border-radius: 5px;
    font-size: 16px;
    padding: 10px;
}

.btn-primary {
    background-color: #00a86b;
    border-color: #00a86b;
}

.btn-primary:hover {
    background-color: #008080;
    border-color: #008080;
}

.small {
    font-size: 14px;
    color: #00a86b;
    text-decoration: none;
}

.description-text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

/* Medya sorguları - küçük ekranlar için */
@media (max-width: 767px) {
    .login-container {
        flex-direction: column;
        width: 100%;
        height: auto;
        margin: 20px;
    }

    .left-side, .right-side {
        flex: none;
        width: 100%;
        padding: 20px;
    }

    .left-side {
        text-align: center;
        padding: 30px 20px;
    }

    .left-content {
        margin-bottom: 20px;
    }

    .form-control-user {
        font-size: 14px;
        padding: 8px;
    }

    .btn-user {
        font-size: 14px;
        padding: 8px;
    }

    .small {
        font-size: 12px;
    }
}