<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.contentlogin{
    width:320px;
    background: #6dafbd;
    border-radius: 8px 8px;
    padding-bottom: 5px;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border: 3px solid white;
    font-family: unset;
}
.contentlogin  div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.contentlogin  span{
    font-size: 15px;
    font-weight: 700;
}
.contentlogin  input{
    border-radius: 5px;
    box-sizing: border-box;
    padding: 5px;
    border: none;
    outline: none;
}
.contentlogin  .showlogin{
    margin-top: 10px;
    width: 60px;
    height: 30px;
    border:none;
    outline: none;
    background-color: #28a745;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    line-height: 25px;
}
.contentlogin  .outlogin{
    margin-top: 10px;
    width: 60px;
    height: 30px;
    border:none;
    outline: none;
    background-color: #dc3545;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    line-height: 25px;
}
.contentlogin  .showlogin:hover{
    background-color: #218838;
}
.contentlogin  .outlogin:hover{
    background-color: #c82333;
}</pre></body></html>