.login-type-selector {
    margin-bottom: 20px;
}

.login-type-label {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.login-type-options {
    display: flex;
    gap: 15px;
}

.login-type-option {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 15px 18px;
    border: 3px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.login-type-option:hover {
    border-color: #4A90E2;
    background-color: #f0f7ff;
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.15);
    transform: translateY(-2px);
}

.login-type-option input[type="radio"] {
    display: none;
}

.login-type-option input[type="radio"]:checked + .radio-custom {
    background-color: #4A90E2;
    border-color: #4A90E2;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.2);
}

.login-type-option input[type="radio"]:checked + .radio-custom::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.login-type-option input[type="radio"]:checked ~ .radio-label {
    color: #4A90E2;
    font-weight: 700;
}

.login-type-option input[type="radio"]:checked ~ .radio-label i {
    transform: scale(1.1);
}

/* Seçili olan label için border ve background */
.login-type-option:has(input[type="radio"]:checked) {
    border-color: #4A90E2;
    background-color: #f0f7ff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25);
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 3px solid #ccc;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    transition: all 0.3s ease;
    font-weight: 500;
}

.radio-label i {
    font-size: 18px;
    transition: transform 0.3s ease;
}


