﻿.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background-color: rgba(0,0,0,0.5);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal p {
    margin: 0;
    padding: 0;
}

.modal-desc.gray {
    color: #898989
}

.modal .buttons, .modal form {
    width: 100%;
    padding: 0;
    margin: 0;
}

.modal .yellow-btn {
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    margin-top: 7px;
}

.modal.enter-otp .yellow-btn {
    font-size: 15px;
    height: 40px;
    box-sizing: border-box;
}

.modal.id-notice .yellow-btn {
    font-size: 12px
}

.modal .buttons, .modal form {
    width: 100%;
    padding: 0;
    margin: 0;
}

.modal {
    display: none;
}

.toast {
    background-color: black;
    color: white;
    font-size: 12px;
    padding: 10px 50px 0;
    border-radius: 30px;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    z-index: 800;
    height: 40px;
    min-width: 300px;
    display: none
}

.toast::before {
    content: url('/assets/svg/Frame4.svg');
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.toast.visible {
    display: block
}

.white-btn {
    width: 100%;
    border: 1px solid black;
    cursor: pointer;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: white;
    color: black;
    text-align: center;
    height: 43px;
    font-size: 13px;
    font-weight: bold;
}

.yellow-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #ffcc00;
    color: black;
    text-align: left;
    height: 46px;
    font-size: 15px;
    font-weight: bold;
}

.yellow-btn img {
    height: 25px;
    width: auto;
}

.modal-body {
    background-color: white;
    padding: 40px 35px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 15px;
    text-align: center;
    flex-direction: column;
    color: black;
    position: relative;
}


input, select {
    height: 44px;
    background-color: #f2f2f2;
    width: 100%;
    border: 1px solid #f2f2f2;
    border-radius: 10px;
    padding-left: 15px;
    box-sizing: border-box;
    outline: none;
}

.modal-title {
    font-weight: 600;
    font-size: 16px;
}

p.resend {
    margin-top: 8px;
    font-size: 12px;
}

.resend a, .resend a:visited {
    color: black;
    text-decoration: underline;
    font-weight: bold;
}


input:focus, select:focus {
    border: 1px solid #606D7A
}

@media screen and (min-width: 1000px) and (max-width: 2000px) {
    .modal-body {
        margin: 26rem;
    }
}

@media screen and (min-width: 700px) and (max-width: 999px) {
    .modal-body {
        margin: 12rem;
    }
}

