*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}


body{
    background:#131416;
    color:white;
    font-family:Arial, Helvetica, sans-serif;
    min-height:100vh;

    display:flex;
    flex-direction:column;
    align-items:center;

    padding-top:32px;
}


/* HEADER */

.header{
    width:1500px;
    display:flex;
    justify-content:space-between;
    align-items:center;

    position:relative;
    top:1px;
    left:-20px;
}


.logo{
    display:flex;
    align-items:center;
}

.logo svg{
    width:150px;
    height:auto;
    display:block;
}


.dropdown{
    position:relative;
    left: -200px;
}


.dropdown select{
    width:180px;
    height:40px;

    background:#0b0d12;
    color:white;

    border:1px solid #3d4047;
    border-radius:8px;

    padding:0 14px;

    font-size:16px;
    font-weight:500;
}


.dropdown span{

    position:absolute;

    right:16px;
    top:50%;

    transform:translateY(-50%);

}


/* CARD */

.card{

    width:446px;
    min-height:627px;

    background:rgba(255,255,255,.04);

    border-radius:8px;

    padding:32px 24px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

}


/* TOP */

.back-btn{

    width:32px;
    height:32px;

    background:none;
    border:none;

    margin-bottom:16px;

    color:white;

    cursor:pointer;
}


.back-btn svg{

    width:24px;
    height:24px;

    fill:white;
}


h2{

    font-size:32px;
    line-height:40px;

    margin-bottom:8px;
}


.label{
    display:flex;
    align-items:center;
    gap:4px;

    margin-bottom:16px;
}

.label span{
    color:rgba(255,255,255,.5);

    font-family:Geist, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:24px;
}


.info-btn{

    width:20px;
    height:20px;

    background:none;
    border:none;

    color:#a3a4a7;
}


.info-btn svg{

    width:20px;
    fill:currentColor;
}


.input-box{
    background:rgba(255,255,255,0.04);

    border-radius:8px;

    display:flex;
    flex-direction:column;

    min-height:218px;

    overflow:hidden;
}


textarea{
    width:398px;
    height:168px;

    padding:16px;

    background:transparent;
    color:#fff;

    border:none;
    outline:none;

    resize:none;

    font-family:Geist, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:16px;
    line-height:24px;

    border-radius:8px;

    scrollbar-width:thin;
}


textarea::placeholder{
    color:rgba(255,255,255,.5);
}


.paste{

    display:flex;

    justify-content:end;

    padding:4px;
}


.paste{
    display:flex;
    justify-content:flex-end;

    width:100%;
    height:48px;
}

.paste-btn{
    height:40px;
    min-width:80px;

    padding:0 16px;

    background:transparent;
    color:white;

    border:none;
    border-radius:12px;

    font-size:16px;
    font-weight:500;
    font-family:Geist, "Helvetica Neue", Helvetica, Arial, sans-serif;

    cursor:pointer;

    transition:all .1s ease;
}

.paste-btn:hover{
    background:rgba(255,255,255,.04);
}

.paste-btn:active{
    background:rgba(255,255,255,.12);
    transform:scale(.97);
}


/* BOTTOM */

.continue {
    width: 398px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgb(255, 255, 255);
    color: rgb(19, 20, 22);

    border: none;
    border-radius: 12px;

    padding: 0 16px;
    min-width: 80px;

    font-family: Geist, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: normal;

    opacity: 0.5;
    cursor: not-allowed;

    overflow: hidden;
    position: relative;

    transition: all 0.1s linear;
}

@media (max-width: 600px) {

    .onboarding-flow {
        width: 100%;
        max-width: 100%;
        padding: 16px;
        box-sizing: border-box;
    }

    .onboarding-flow__container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px;
        box-sizing: border-box;
    }

    .import-srp {
        width: 100%;
    }

    .srp-input-import__initial-input {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
    }

    h2 {
        font-size: 32px;
        line-height: 40px;
        word-break: break-word;
    }

    .import-srp__continue-button {
        width: 100%;
    }

    .dropdown__select {
        width: 130px;
        font-size: 13px;
    }
}