﻿.login-box {
    max-width: 1200px;
    margin: 5% auto;
}

.login-card-body {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
}

.login-section {
    flex: 1;
    padding: 30px;
    min-width: 300px;
}

    .login-section:not(:last-child) {
        border-right: 1px solid #ddd;
    }

    .login-section h4 {
        text-align: center;
        margin-bottom: 20px;
        font-weight: 600;
    }

.input-group-text {
    background-color: #f8f9fa;
}

.btn {
    border-radius: 25px;
}

@media (max-width: 768px) {
    .login-section {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
}
/* Card hover efekti */
.card-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card-hover-effect:hover {
        transform: scale(1.02); /* %5 büyütme */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* gölgeyi artır */
        z-index: 2; /* üstte görünmesi için */
    }
