html, body {
    font-family:Arial, Helvetica, sans-serif;
    background: #1C1C1C;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    
}

.container {
    padding: 32px;
    background: #1F2937;
}


h1 span{
    color: #4ADF86;
}

form {
    white-space: nowrap;
}

form label {
    margin-top: 10px;
    margin-bottom: 10px;
}

form label:first-child {
    display:block;
}


.check-num {
    margin-right: 5px;
}

button {
    display: block;
    margin-top: 32px;
    padding: 5px;
    font-size: 16px;
    background: #10B981;
    border: none;
    color: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
}

.pws{
    display: flex;
    justify-content: center;
}

.pw {
    
    display: inline-flex;
    padding: 5px;
    text-align: center;
    height: 20px;
    width: 160px;
    background: #273549;
    color: #55F991;
    border-radius: 6px; 
}

#pw2-el{
    margin-left: 12px;
}

hr {
    margin: auto;
    margin-top: 32px;
    margin-bottom: 16px;
    border: 1px solid #273549;
}

#copyMsg {
    height: 16px;
    font-size: 13px;
    margin-top: 0;
}

@media only screen and (max-width: 480px) {
    .container {
        height: 100%;
        width: 100%;
    }

    .pws{
        display: block;
    }

    .pw {
        display: block;
    }

    #pw2-el{
        margin-left: 0;
    }
}