body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-body-bg);
}

.forgot-container {
    padding: 48px;
    width: 481px;
}

form {
    padding: 0;
}

.forgot-card {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.forgot-title {
    font-size: 30px;
    font-weight: bold;
    line-height: 38px;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}


.input-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 16px;
    color: #333;
}

.input-label > label {
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #454545;
}

.required-badge {
    background: #E32B1F;
    padding: 0 4px;
    border-radius: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 16px;
}

.required-badge > span {
    font-size: 10px;
    color: #FFFFFF;
    line-height: 16px;
    font-weight: 500;
    width: 20px;
    height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0;
}

/* Message box styles */
.message-box {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #F6F6F6;
    flex-direction: row;
    gap: 24px;
}

.message-error {
    background-color: #FFF0F0;
    color: #B10303;
}

.message-close {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.message-close i {
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: #116A39;
}

.message-box > span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.input-field, .input-field-date {
    width: 100%;
    padding: 0 12px;
    border: 1px solid #898C94;
    border-radius: 8px !important;
    font-size: 16px;
    font-weight: 400;
    color: #020202;
    line-height: 40px;
}

.input-field-date {
    padding-right: 40px;
}

.input-field:focus {
    outline: none;
    border-color: #FD8F46;
    box-shadow: inset 0 0 0 1px #FD8F46, 0 0 0 4px rgba(253, 143, 70, 0.24);
}

.input-field.is-invalid {
    border-color: #FF2323;
}

.input-field-date.is-invalid {
    padding-right: 66px;
}

.input-icon {
    position: absolute;
    right: 12px;
}

.icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.calendar-icon {
    right: 12px;
    cursor: pointer;
}

.alert-icon {
    right: 40px;
    cursor: pointer;
}

.hint-text-error {
    color: #F44034;
    font-size: 14px;
    margin-top: 6px;
    font-weight: 400;
    line-height: 20px;
}

.group-button {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 16px;
}

.send-button {
    display: flex;
    justify-content: center;
    padding: 12px 18px;
    gap: 6px;
    background: #FD8F46;
    border-radius: 8px;
    color: white;
    border: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.send-button:hover {
    background-color: #EC4B0A;
}

.send-button:focus {
    outline: none;
    background-color: #FD8F46;
    box-shadow: 0 0 0 4px rgba(253, 143, 70, 0.24);
}


.back-button {
    display: flex;
    justify-content: center;
    padding: 12px 18px;
    gap: 6px;
    border: 1px solid #6D6D6D;
    border-radius: 8px;
    color: #454545;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 48px;
}

.back-button:hover {
    color: #454545;
}

.sign-up {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #4F4F4F;
}

.input-group-append {
    cursor: pointer;
}

.datepicker table tr td.day {
    border: 1px solid #c5c5c5;
    border-radius: 4px;
    padding: 2px 8px;
}

.datepicker table tr td.old,
.datepicker table tr td.new {
    color: #aaa !important;
    background-color: #f6f6f6 !important;
    border-color: #c5c5c5 !important;
}

.datepicker table tr td.day:hover {
    background-color: #e6f0ff;
    cursor: pointer;
}

.datepicker table tr td.old,
.datepicker table tr td.new {
    display: none !important;
}
.message-box {
    position: relative;
    padding: 12px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.message-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}