body form.register-form{
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

body .input-block input {
    width: 100% !important; 
    padding: 13px;
    margin-bottom: 15px;
}

body .input-block input.valid {
  background-color: white !important;
  border: 3px solid rgba(0, 255, 0, .6) !important;
}

body .input-block input.invalid {
  background-color: white !important;
  border: 3px solid rgba(255, 0, 0, .6) !important;
}

body .from__submit{
    margin: 15px auto 0 !important;
    display: block;
    font-size: 20px;
    position: relative;
    padding: 0;
    width: 90%;
    min-height: 60px;
    cursor: pointer;
    white-space: normal;
    border: none;
    transition: 50ms ease-out;
    animation: 2s ease 0s infinite normal none running pulsing;
    font-weight: 700;
    background: #26374a;
    text-transform: uppercase;
    color: #fff;
    box-shadow: #26374a 0 0 0 0;
}