.submit-button btn  {
    background-color: #000000;
    border: 2px solid #ffffff;
    color:white;
}
.register {
    width: 100%;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
:where(.input-fields, header) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

form .input-fields {
    flex-direction: row;
    column-gap: 10px;
}
.input-fields input {
    height: 45px;
    width: 42px;
    border-radius: 6px;
    outline: none;
    font-size: 1.125rem;
    text-align: center;
    border: 1px solid #ddd!important;
}
.input-fields input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.input-fields input::-webkit-inner-spin-button,
.input-fields input::-webkit-outer-spin-button {
    display: none;
}
.opt button {
    margin: 25px auto;
    width: 80%;
    color: #fff;
    font-size: 1rem;
    border: none;
    padding: 5px 0;
    cursor: pointer;
    border-radius: 5px;
    pointer-events: none;
    background: #0066CC!important;
    transition: all 0.2s ease;
    text-align: center;
}
.opt  button.active {
    background: #40F46A!important;
    pointer-events: auto;
}
.opt button:hover {
    background: #0e4bf1!important;
}
.terms {
    color:#0066cc;
    text-decoration: underline;
    cursor: pointer;
}
.terms:hover {
    color:blue;
    text-decoration: underline;
    cursor: pointer;
}
