:root{
    --color-bg: #1f1f21;
    --color-font: #fff;
}
body{
    background: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
}
main{
    background: #252525;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    padding: 35px;
}
form > div{
    text-align: center;
    margin-bottom: 35px;
}
form h1{
    font-weight: normal;
    color: #ffc100;
}
form span,
form a{
    color: #6c6c6c;
}
form label,
form label input,
form button{
    width: 100%;
}
form label{
    border: 1px solid #6c6c6c;
    border-radius: 7px;
    display: flex;
    align-items: center;
    height: 44px;
    overflow: hidden;
    margin-bottom: 25px;
}
form label svg{
    fill: #ffc100;
    margin: 0 14px;
}
form label input{
    color: #fff;
    background: none;
    outline: none !important;
    border: 0;
    height: 100%;
}
form label input::placeholder{
    color: #6c6c6c;
}
form button{
    margin-top: 20px;
    background: #ffc100;
    border: 0;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-weight: 700;
}

input[type="checkbox"]{
    width: 15px !important;
    height: 15px !important;
    margin-top: 0.2em;
    vertical-align: top;
    background-color: #fff !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #fff !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    print-color-adjust: exact;
    border-radius: 0.25em;
}
input[type="checkbox"]:checked{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
    background-color: #ffc100 !important;
    border-color: #ffc100 !important;
}