/* 기본 배경 설정 */
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* 카드 공통 스타일 */
.auth-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* 카드 상단 헤더 (딥 블루) */
.card-header-custom {
    background-color: #003366;
    padding: 40px 20px;
    text-align: center;
    border: none;
}

/* 카드 하단 포인트 바 */
.card-footer-custom {
    background-color: #003366;
    height: 8px;
    width: 100%;
}

/* 아라마루 버튼 스타일 */
.btn-aramaru {
    background: #003366;
    color: white;
    border: none;
    padding: 12px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-aramaru:hover {
    background: #004a94;
    color: white;
    transform: translateY(-2px);
}

/* 입력창 포커스 효과 */
.form-control:focus {
    border-color: #00AEEF;
    box-shadow: 0 0 0 0.25rem rgba(0, 174, 239, 0.25);
}

/* 에러 알림창 커스텀 */
.auth-error-alert {
    background-color: #FFF0F0;
    border: none;
    border-left: 4px solid #FF4D4D;
    border-radius: 12px;
    padding: 15px;
}

/* 텍스트 색상 및 강조 */
.text-aramaru-blue { color: #003366; }
.text-aramaru-sky { color: #00AEEF; }

/* 에러 숫자 강조 스타일 */
.error-code {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(to bottom, #003366, #00AEEF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}

/* 부유 애니메이션 (로고가 둥둥 떠 있는 효과) */
.floating { 
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}