/* 인증 관련 스타일 */

.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    border: none;
    border-radius: 8px;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--brand-color, rgb(118, 32, 246));
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control:focus {
    border-color: var(--brand-color, rgb(118, 32, 246));
    box-shadow: 0 0 0 0.2rem rgba(118, 32, 246, 0.25);
}

.btn-brand {
    background-color: var(--brand-color, rgb(118, 32, 246));
    border-color: var(--brand-color, rgb(118, 32, 246));
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

.btn-brand:hover {
    background-color: rgba(118, 32, 246, 0.9);
    border-color: rgba(118, 32, 246, 0.9);
    color: white;
}

.btn-link {
    color: var(--brand-color, rgb(118, 32, 246));
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    color: rgba(118, 32, 246, 0.8);
    text-decoration: underline;
}

.alert {
    border-radius: 6px;
}

.form-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.text-danger {
    color: #dc3545 !important;
}

/* 모바일 대응 */
@media (max-width: 767.98px) {
    .card-body {
        padding: 1.5rem !important;
    }

    .card-title {
        font-size: 1.5rem;
    }
}

/* 전화번호 입력 그룹 */
.input-group .form-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}




