.lock__input{
    background-color: var(--body-background);

    -webkit-user-select: none;
    user-select: none;
}
.lock__input:focus{
    border: none;
}
.form__tittle{
    text-align: center;
}
.withdraw__form{
    width: 720px;
    margin: auto;
    margin-top: 50px;
    padding: 4rem;
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    margin-bottom: 6rem;
}
.small{
    width: 720px;
    margin: auto;
    margin-bottom: 10rem;
}
.form-label{
    font-size: 1.6rem;
    color: var(--p-color);
}
.form-control{
    font-size: 1.2rem;
}
.bank__info{
    margin-top: 2rem;
    background-color: var(--body-background);
    border-radius: 2rem;
    width: 100%;
    padding: 2rem 2rem 4rem 2rem;
    
    
}
.bank__info__container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.bank__info__tittle{
    text-align: center;
    color: var(--text-color);
    margin: 1rem 0px;
}
.form-group-bank{
    width: 48%;
    margin-top: 2rem;
}
.form-group-bank label{
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 4rem;
}
.form-group-bank input{
    width: 100%;
    height: 4rem;
    border: 1px solid var(--input-stroke);
    background-color: var(--input-fill);
    border-radius: 1rem;
    padding: 10px;
    font-size: 1.2rem;

    outline: none;
}

.vertify__code{
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.__cf_email__{
    background-color: var(--p-color);
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;

}
.__cf_email__:hover{
    background-color: #2FA7F0;
}
.check__message{
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-color);
    margin-top: 2rem;
    padding: 2rem;
    line-height: 2rem;

}
.form__btn{
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
}

.form__btn a{
    width: 48%;
    cursor: pointer;
    text-align: center;
    line-height: 5rem;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
}

.form__btn a button{
    width: 100%;
    border-radius: 1rem;
    height: 50px;
    border: none;
    transition: 0.3s ease;
    cursor: pointer;
}
.send__btn{
    background-color: var(--p-color);
    color: white;
    font-size: 1.6rem;
}
.send__btn:hover{
    background-color: #2FA7F0;
}
.cancel__btn{
    background-color: var(--body-background);
    color: #FF9C41;
    font-size: 1.6rem;
}
.cancel__btn:hover{
    background-color: #6d6d6d;
}

.success__form{
    width: 720px;
    margin: auto;
    margin-top: 50px;
    padding: 4rem;
    background-color: var(--p-color);
    opacity: 70%;
    box-shadow: var(--box-shadow);
    border-radius: 20px;
}
.success__form__inner{
    color: white;
    text-align: center;
}
.success__form__inner i{
    font-size: 10rem;
    margin: 2rem 0 6rem 0;
}
.success__form__inner h2{
    font-size: 4rem;
    font-weight: 500;

}
.success__form__inner p {
    font-size: 2rem;
    line-height: 4rem;
    margin: 3rem 0 2rem 0;
}
.withdraw__btn{
    background-color: #FF6666;
    color: white;
    font-size: 1.6rem;

}
.withdraw__btn:hover{
    background-color: red;
}

.number___swap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.swap__icon{
    font-size: 1.4rem;
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
    margin: 0 40px;
    background-color: var(--p-color);
}



.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, .4);
}
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    border-radius: 2rem;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}