#register-form {
    max-width: 300px;
    margin: auto;
    background: var(--my-light-blue);
    padding: 30px;
    border: 1px solid var(--my-border-grey);
}
#register-form .icon {
    width: 100px;
    height: 100px;
    background: var(--my-dark-blue);;
    border-radius: 50%;
    position: relative;
    margin: 15px auto 45px auto;
}
#register-form .icon i {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    margin: auto;
    height: 50px;
    font-size: 50px;
}
#register-form .register-element {
    background: white;
    margin-top: 25px;
    border-radius: 5px;
    padding: 8px;
}
#register-form .register-element.username {
    margin-top: 0;
}
#register-form .register-element p {
    color: black;
    text-transform: uppercase;
}
#register-form .register-element input {
    border: none;
    width: 100%;
    background: white;
    color: black;
}
#register-form button[type="submit"] {
    width: 100%;
    color: black;
    border: none;
    margin-top: 25px;
    text-transform: uppercase;
    padding: 6px;
    background: var(--my-light-yellow);
}
#register-form .have-acc {
    text-align: center;
    margin-top: 25px;
    font-size: 12px;
    line-height: 15px;
}
#register-form .have-acc a {
    color: var(--my-dark-yellow);
}
#register-form .form-error {
    font-size: 12px;
    color: var(--my-error-red);
    font-weight: 500;
    margin-top: 4px;
    line-height: 15px;
}
#register-form #accept_rules {
    text-align: center;
    font-size: 12px;
    line-height: 15px;
    margin-top: 5px;
}
#register-form #accept_rules span {
    cursor: pointer;
    color: var(--my-light-yellow);
}
