.vivo-login{

    display:flex;
    justify-content:center;
    align-items:center;
    min-height:70vh;

}

.vivo-login-card{

    width:420px;
    background:#fff;
    border-radius:28px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;

}

.vivo-logo{

    font-size:60px;
    margin-bottom:15px;

}

.vivo-login h2{

    margin-bottom:10px;

}

.vivo-login p{

    color:#666;
    margin-bottom:30px;

}

.vivo-login input[type="email"]{

    width:100%;
    padding:16px;
    font-size:18px;
    border:1px solid #DDD;
    border-radius:14px;
    margin-bottom:20px;
    box-sizing:border-box;

}

.vivo-login button{

    width:100%;
    border:none;
    border-radius:14px;
    background:#18A7D8;
    color:#FFF;
    font-size:18px;
    font-weight:600;
    padding:16px;
    cursor:pointer;
    transition:.25s;

}

.vivo-login button:hover{

    background:#1493c1;

}

/* -----------------------------
   PIN-kod
------------------------------*/

.vivo-pin-wrapper{

    display:flex;
    justify-content:center;
    gap:14px;
    margin:30px 0;

}

.vivo-pin{

    width:64px !important;
    height:64px;

    padding:0 !important;
    margin:0 !important;

    border:2px solid #D9E2EC !important;
    border-radius:16px;

    background:#FFF;

    font-size:32px !important;
    font-weight:700;

    text-align:center;

    outline:none;

    transition:.25s;

    box-sizing:border-box;

}

.vivo-pin:focus{

    border-color:#18A7D8 !important;

    box-shadow:0 0 0 4px rgba(24,167,216,.15);

}

.vivo-pin.filled{

    border-color:#18A7D8 !important;

    background:#F7FCFF;

}

@media(max-width:600px){

    .vivo-login-card{

        width:100%;
        margin:20px;
        padding:30px;

    }

    .vivo-pin{

        width:54px !important;
        height:54px;

        font-size:28px !important;

    }

    .vivo-pin-wrapper{

        gap:10px;

    }

}
#vivo-status{

    margin-top:25px;
    min-height:28px;

    color:#18A7D8;

    font-size:16px;

    font-weight:600;

}

.vivo-spinner{

    width:18px;
    height:18px;

    border:2px solid #D9E2EC;
    border-top-color:#18A7D8;

    border-radius:50%;

    display:inline-block;

    margin-right:10px;

    animation:vivoSpin .7s linear infinite;

    vertical-align:middle;

}

@keyframes vivoSpin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}
/* -----------------------------
   Status
------------------------------*/

.vivo-status{

    margin-top:24px;

    min-height:24px;

    font-weight:600;

    color:#18A7D8;

}

/* -----------------------------
   Nedräkning
------------------------------*/

.vivo-resend{

    margin-top:18px;

    font-size:14px;

    color:#777;

}

.vivo-resend strong{

    color:#19314C;

}

.vivo-resend a{

    color:#18A7D8;

    text-decoration:none;

    font-weight:600;

}

.vivo-resend a:hover{

    text-decoration:underline;

}

/* -----------------------------
   Spinner
------------------------------*/

.vivo-spinner{

    display:inline-block;

    width:16px;

    height:16px;

    margin-right:8px;

    border:2px solid rgba(24,167,216,.25);

    border-top:2px solid #18A7D8;

    border-radius:50%;

    animation:vivo-spin .8s linear infinite;

}

@keyframes vivo-spin{

    to{

        transform:rotate(360deg);

    }

}