a {
    text-decoration: none;
}

.width-100 {
    width: 100%;
}

a:visited {
    color: #000000;
}

a.link-blue,
a.link-blue:visited {
    color: #29ABE2;
}

a.link-blue:hover {
    text-decoration: underline;
}

ol li::marker {
    font-size: 27px;
    font-weight: 700;
}

a.link-as-button {
    padding: 8px 16px;
    background-color: #2A3647;
    color: #FFFFFF;
    border-radius: 10px;
    border: 1px #2A3647;
    cursor: pointer;
    height: 56px;
}

a.link-as-button:hover {
    background-color: #29ABE2;
}

button {
    padding: 8px 16px;
    background-color: #2A3647;
    color: #FFFFFF;
    border-radius: 10px;
    border: 1px #2A3647;
    cursor: pointer;
    height: 56px;
}

.cursor {
    cursor: pointer;
}

button:disabled {
    background-color: #D1D1D1;
}

button:hover {
    background-color: #29ABE2;
}

button:disabled:hover {
    cursor: not-allowed;
    background-color: #D1D1D1;
}

button img {
    width: 24px;
    height: 24px;
}

.btn-clear {
    background-color: rgba(0, 0, 0, 0) !important;
    border: 1px solid #2A3647;
}

.btn-clear:hover {
    border: 1px solid #29ABE2;
    box-shadow: 0px 4px 4px 0px #00000040;
    color: #29ABE2;
}

.input-container {
    position: relative;
    width: 100%;
}

.input-password-icon {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: auto;
}

.input-password-icon.no-password {
    background-image: url("../assets/img/icon_password.png");
}

.input-password-icon.password-visible {
    background-image: url("../assets/img/icon_visible.png");
}

.input-password-icon.password-invisible {
    background-image: url("../assets/img/icon_invisible.png");
}

input {
    border-radius: 10px;
    border: 1px solid #A8A8A8;
    height: 50px;
    padding: 12px 20px;
    font-size: 20px;
    color: #000000;
    width: 100%;
}

input.error {
    border: 1px solid #FF8190 !important;
}

.input-container input {
    padding-right: 40px;
    width: 100%;
}

textarea {
    border-radius: 10px;
    border: 1px solid #A8A8A8;
    padding: 12px 20px;
    font-size: 20px;
    color: #000000;
    resize: none;
}

input:focus {
    outline: none;
    border: 1px solid #29ABE2;
}

input::placeholder,
textarea::placeholder {
    color: #D1D1D1;
}

.input-container:has(input[type="text"])::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.input-container:has(input[type="text"][name="username"])::after {
    background-image: url('../assets/img/icon_name.png');
}


.input-container:has(input[type="email"])::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('../assets/img/icon_mail.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.input-container:has(input[type="tel"])::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('../assets/img/icon_phone.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.checkbox-icon {   
    cursor: pointer;
    width: 24px;
    height: 24px;
    background-image: url("../assets/img/icon_checkbox_unchecked.png");
    background-repeat: no-repeat;
    background-position: center;
}

.checkbox:checked+label.checkbox-icon {
    background-image: url("../assets/img/icon_checkbox_checked.png");
}

.head-dividing-line {
    border: 3px solid #29ABE2;
    height: 59px;
}

.head-dividing-line-horizontal {
    border: 3px solid #29ABE2;
    width: 90px;
}

.content-dividing-line {
    border: 2px solid #D1D1D1;
    height: 102px;
}

.toastmessage {
    position: absolute;
    right: -100%;
    bottom: 80px;
    background-color: #2A3647;
    color: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 999;
    display: none;
}

.toastmessage-show {
    animation: slideIn 0.5s forwards, slideOut 0.5s 2.0s forwards;
    opacity: 1;
    display: block;
}

@keyframes slideIn {
    0% {
        right: -100%;
        opacity: 0;
    }

    100% {
        right: 20px;
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        right: 20px;
        opacity: 1;
    }

    100% {
        right: -100%;
        opacity: 0;
    }
}

.error-message {
    font-size: 13px;
    color: #FF8190;
}

.gap4 {
    gap: 4px;
}

.gap8 {
    gap: 8px;
}

.gap16 {
    gap: 16px;
}

.gap20 {
    gap: 20px;
}

.gap24 {
    gap: 24px;
}

.gap32 {
    gap: 32px;
}

.m-t-4 {
    margin-top: 4px;
}

.m-t-8 {
    margin-top: 8px;
}

.m-t-16 {
    margin-top: 16px;
}

.m-t-24 {
    margin-top: 24px;
}

.m-t-32 {
    margin-top: 32px;
}

.m-t-36 {
    margin-top: 36px;
}

.m-t-96 {
    margin-top: 96px;
}

.m-b-8 {
    margin-bottom: 8px;
}

.m-b-16 {
    margin-bottom: 16px;
}

.m-b-24 {
    margin-bottom: 24px;
}

.m-b-32 {
    margin-bottom: 32px;
}

.m-l-8 {
    margin-left: 8px;
}

.margin-8 {
    margin: 8px;
}

.padding-32 {
    padding: 32px;
}

.txt-center {
    text-align: center;
}


@media (max-width: 1100px) {

    .toastmessage {
        bottom: 180px;
    }
}

@media (max-width: 800px) {
    input {
        height: 40px;
    }

    input,
    input::placeholder,
    textarea,
    textarea::placeholder {
        font-size: 16px;
    }
}