.register
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
form
{
    width: 500px;
    height: auto;
    background: var(--black2);
    color: var(--white1);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid black;
    position: relative;
}
h3
{
    font-size: 1.4em;
    margin-bottom: 30px;
}
.addaccound
{
    color: var(--blue1);
    text-decoration: none;
}
input
{
    height: 45px;
    border-radius: 10px;
    outline: none;
    text-indent: 10px;
    border: 1px solid black;
    background: transparent;
    margin-bottom: 20px;
    color: var(--white1);
}
.email,.password
{
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 5px;
}
input[type="button"],
input[type="submit"]
{
    margin-top: 20px;
    margin-bottom: 0;
    width: 40%;
    background: var(--blue1);
    border: none;
    text-indent: 0;
    color: var(--white1);
    font-size: 1.1em;
    cursor: pointer;
}

#strengthMassage
{
    position: absolute;
    font-size: 0.8em;
    transform: translateY(-20px);
    margin-left: 5px;
    bottom: 80px;
    color: red;
}