*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial,Helvetica,sans-serif;
    background:#f4f6f9;

}

/* ===========================
   LOGIN
=========================== */

.twentyone-login{

    width:420px;
    margin:80px auto;
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.twentyone-login h1{

    text-align:center;
    margin-bottom:10px;
    color:#0f172a;

}

.twentyone-login p{

    text-align:center;
    color:#666;
    margin-bottom:25px;

}

/* INPUT EMAIL */

.twentyone-login input[type=email]{

    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    transition:.3s;

}

.twentyone-login input[type=email]:focus{

    border-color:#000;

}

/* PASSWORD */

.tw-password{

    position:relative;
    margin-bottom:20px;

}

.tw-password input{

    width:100%;
    padding:14px;
    padding-right:50px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    transition:.3s;

}

.tw-password input:focus{

    border-color:#000;

}

.tw-password button{

    position:absolute;

    right:15px;

    top:50%;

    transform:translateY(-50%);

    background:none;

    border:none;

    padding:0;

    margin:0;

    width:auto;

    color:#777;

    cursor:pointer;

    font-size:18px;

}

.tw-password button:hover{

    color:#000;

}

/* LOGIN BUTTON */

.twentyone-login button[type=submit]{

    width:100%;
    padding:14px;
    background:#000;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;

}

.twentyone-login button[type=submit]:hover{

    background:#222;

}

.tw-password button{

    position:absolute !important;
    top:50% !important;
    right:15px !important;

    transform:translateY(-50%) !important;

    width:auto !important;
    height:auto !important;

    padding:0 !important;
    margin:0 !important;

    border:none !important;
    background:transparent !important;

    color:#666 !important;

    font-size:18px !important;

    cursor:pointer;

}