﻿.verify-modal-wrapper {
    background-color: #f2f2f2af;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}
.verify-modal-container {
    background-color: #ffffff;
    width: 400px;
    height: auto;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.verify-modal-header-container {
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.verify-modal-header {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #1979FF;
}
.verify-modal-close {
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%230033ff'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M6.99486 7.00636C6.60433 7.39689 6.60433 8.03005 6.99486 8.42058L10.58 12.0057L6.99486 15.5909C6.60433 15.9814 6.60433 16.6146 6.99486 17.0051C7.38538 17.3956 8.01855 17.3956 8.40907 17.0051L11.9942 13.4199L15.5794 17.0051C15.9699 17.3956 16.6031 17.3956 16.9936 17.0051C17.3841 16.6146 17.3841 15.9814 16.9936 15.5909L13.4084 12.0057L16.9936 8.42059C17.3841 8.03007 17.3841 7.3969 16.9936 7.00638C16.603 6.61585 15.9699 6.61585 15.5794 7.00638L11.9942 10.5915L8.40907 7.00636C8.01855 6.61584 7.38538 6.61584 6.99486 7.00636Z' fill='%230033ff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.verify-modal-close:hover{
    cursor:pointer;
}
#verify-code-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
input#verify-code-input::-webkit-outer-spin-button,
input#verify-code-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input#verify-code-input[type=number] {
    -moz-appearance: textfield;
}
.repeat-request-code {
    padding: 3px 0;
    color: #1152c8 !important;
    text-decoration: underline !important;
    text-decoration-style: dotted !important;
    text-underline-position: under;
}
.repeat-request-code:hover{
    cursor: pointer;
}
.send-code-btn {
    font-family: 'Montserrat';
    font-style: normal;
    width: 100%;
    padding: 10px;
    background-color: #0081ff;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 991px) {
    .verify-modal-wrapper{
        padding: 50px;
    }
    .verify-modal-container {
        width: 100%;
    }
}