/* Poppins Google font link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
::selection{
    background: #5352ed;
    color: #fff;
}

.wrapper1{
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.2);
    position: relative;
}
.wrapper1::before{
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #bfbfbf;
}
.wrapper1 .col .text{
    font-size: 28px;
    text-align: center;
    font-weight: 500;
}
.wrapper1 .col .s6{
    margin-top: 30px;
}
.wrapper1 .col .s6 .sm{
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 500;
    padding-left: 2px;
}
.wrapper1 .col .s6 input{
    width: 100%;
    height: 45px;
    border: 2px solid #bfbfbf;
    outline: none;
    border-radius: 4px;
    padding-left: 10px;
    font-size: 18px;
    transition: all 0.4s ease;
}
.wrapper1 .col .s6 input:focus{
    border-color: #4834d4;
}
.wrapper1 .col .s6 .transfer{
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}
.wrapper1 .col .s6 .transfer .icon span{
    font-size: 28px;
    color: #2f3542;
}
.wrapper1 .col .s6 .transfer .select-text{
    width: 90px;
    height: 35px;
    padding-left: 6px;
    outline: none;
    border: 2px solid #bfbfbf;
    border-radius: 5px;
}
.wrapper1 .col .s6 .transfer .select-text:focus{
    border-color: #4834d4;
}
.wrapper1 .col .s6 .button{
    margin-top: 20px;
}
.wrapper1 .col .s6 .button .btn{
    width: 100%;
    height: 45px;
    background: #5352ed;
    border: none;
    outline: none;
    font-size: 20px;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}
.wrapper1 .col .s6 .s2{
    margin-top: 20px;
}
.wrapper1 .col .s6 .s2 .conversion{
    font-size: 20px;
}