@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{

    --bg:#141417;

    --card:#24262D;

    --primary:#C6283D;

    --primary-dark:#781A29;

    --primary-light:#E5485C;

    --text:#FFFFFF;

    --text-secondary:#D5D5D5;

    --border:rgba(255,255,255,.28);

    --sheet:#2D2F36;

    --sheet-item:#383A42;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html,
body{

    width:100%;

    height:100%;

}

body{

    font-family:'Inter',sans-serif;

    color:var(--text);

    background:
    linear-gradient(
        180deg,

        #8B2435 0%,

        #751F2F 15%,

        #5D1A28 28%,

        #41161F 42%,

        #2B1A1F 60%,

        #1C1C21 82%,

        #141417 100%

    );

}

.container{

    width:100%;

    max-width:430px;

    margin:auto;

    min-height:100vh;

    display:flex;

    align-items:flex-start;

    justify-content:center;

    padding:48px 22px;

}

.login{

    width:100%;

}

h1{

    font-size:40px;

    font-weight:700;

    margin-bottom:10px;

}

.subtitle{

    font-size:22px;

    line-height:1.4;

    margin-bottom:42px;

    color:#fff;

}

.input-group{

    width:100%;

    height:64px;

    border:2px solid var(--border);

    border-radius:18px;

    display:flex;

    align-items:center;

    padding:0 18px;

    margin-bottom:18px;

    background:rgba(255,255,255,.02);

    transition:.25s;

}

.input-group:focus-within{

    border-color:#ffffff;

}

.input-group input{

    flex:1;

    border:none;

    outline:none;

    background:none;

    color:#fff;

    font-size:18px;

    margin-left:14px;

    font-family:inherit;

}

.input-group input::placeholder{

    color:rgba(255,255,255,.82);

}

.icon{

    font-size:22px;

}

.icon-button{

    background:none;

    border:none;

    color:#fff;

    cursor:pointer;

    font-size:22px;

}

.select{

    cursor:pointer;

    background:rgba(255,255,255,.03);

}

.select .icon{

    margin-right:14px;

}

#selectedAccount{

    flex:1;

    text-align:left;

    color:#fff;

    font-size:18px;

}

.arrow{

    font-size:20px;

}

.forgot{

    display:block;

    margin:8px 0 34px;

    text-align:right;

    text-decoration:none;

    color:#D53E52;

    font-weight:600;

}

.login-button{

    width:100%;

    height:62px;

    border:none;

    border-radius:40px;

    cursor:pointer;

    color:#fff;

    font-size:22px;

    font-weight:700;

    background:

    linear-gradient(

        180deg,

        var(--primary-light),

        var(--primary)

    );

    box-shadow:

    0 8px 20px rgba(198,40,61,.35);

}

.login-button:active{

    transform:scale(.99);

}

.saved-button{

    width:100%;

    border:none;

    background:none;

    color:#D53E52;

    font-size:18px;

    font-weight:600;

    margin-top:24px;

    cursor:pointer;

}

.overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.25s;

}

.overlay.show{

    opacity:1;

    visibility:visible;

}

.bottom-sheet{

    position:fixed;

    left:0;

    right:0;

    bottom:-420px;

    background:var(--sheet);

    border-radius:26px 26px 0 0;

    padding:20px;

    transition:.30s;

}

.bottom-sheet.show{

    bottom:0;

}

.sheet-handle{

    width:48px;

    height:5px;

    border-radius:30px;

    background:#6AD4FF;

    margin:0 auto 22px;

}

.sheet-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.sheet-header h2{

    font-size:22px;

}

.close-sheet{

    border:none;

    background:none;

    color:#fff;

    cursor:pointer;

    font-size:26px;

}

.account-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:var(--sheet-item);

    border:1px solid #50535C;

    border-radius:18px;

    padding:18px;

    margin-bottom:14px;

    cursor:pointer;

    transition:.2s;

}

.account-item.active{

    border-color:var(--primary-light);

}

.account-title{

    font-size:18px;

    font-weight:700;

    margin-bottom:4px;

}

.account-description{

    color:#C8C8C8;

    font-size:14px;

}

.check{

    color:var(--primary-light);

    font-size:22px;

}

@media(max-width:420px){

    h1{

        font-size:34px;

    }

    .subtitle{

        font-size:20px;

    }

}
/* Input do PIN - remover setas do number input */
#pinInput::-webkit-outer-spin-button,
#pinInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#pinInput[type=text] {
    -moz-appearance: textfield;
}
