/* 로그인, 회원가입, 비밀번호 찾기 페이지 관련 */
.error-message-box{
    font-weight: bold;
    color: #ff2222;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-message-box p{
    margin-top: 16px;
}

.password-policy-box{
    background: #f3f3f3;
    border-radius: 10px;
    padding: 3px 3px 0px 3px;
}

/* 세션 타이머 관련 */
.mdi.mdi-clock-time-five-outline {
    font-size: 1.25rem; /* 아이콘 크기 조정 */
    vertical-align: middle; /* 텍스트와 아이콘의 수직 정렬 */
}

#session-timer {
    vertical-align: middle; /* 텍스트와 아이콘의 수직 정렬 */
}

/* Modal관련 CSS */
.modal-btn-box{
    display: flex;
    align-items: center;
}
.modal-btn-box .modal-btn{
    background: #4e73df;
    height: 40px;
    color: white;
    border: none;
    border-radius: 5px;
}
.modal-dialog .custom-modal-form{
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.modal-dialog .custom-modal-form .modal-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-card-box{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.payment-card {
    width: 250px;
    border: 1px solid #dee2e6;
    border-radius: .75rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.payment-card:hover {
    transform: translateY(-5px);
}
.payment-card.selected {
    border-color: #0d6efd;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}
.price {
    font-size: 2rem;
    font-weight: 700;
}
.price small {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}
.features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    color: #6c757d;
    min-height: 80px;
    flex-grow: 1;
}
