/*
|--------------------------------------------------------------------------
| Wallet Search
|--------------------------------------------------------------------------
*/

.wallet-search-section{

    max-width:920px;

    margin:0 auto;

}

.wallet-search-content{

    padding:10px 0;

}

.wallet-search-description{

    color:#97a7c0;

    font-size:15px;

    margin-bottom:25px;

}

.wallet-search-box{

    display:flex;

    align-items:center;

    gap:0;

    position:relative;

}

.wallet-search-input{

    width:100%;

    height:62px;

    border:none;

    outline:none;

    border-radius:18px;

    background:#1b2435;

    color:#fff;

    font-size:17px;

    padding:0 165px 0 22px;

    transition:.25s;

    border:1px solid rgba(255,255,255,.05);

}

.wallet-search-input:focus{

    border-color:#3b82f6;

    box-shadow:

        0 0 25px

        rgba(59,130,246,.25);

}

.wallet-search-button{

    position:absolute;

    right:8px;

    top:8px;

    bottom:8px;

    width:140px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-weight:700;

    color:#fff;

    background:

        linear-gradient(

            135deg,

            #3b82f6,

            #2563eb

        );

    transition:.25s;

}

.wallet-search-button:hover{

    transform:scale(1.03);

}

.wallet-search-message{

    margin-top:18px;

    min-height:22px;

    color:#8ea4c7;

    font-size:14px;

}