:root{
    
}

*, *:before, *:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    background-image: linear-gradient(to right, #f83600 0%, #f9d423 100%);

}

img{
    width: 100%;
    max-width: max-content;
    height: auto;
}

.card{
    border-radius: 20px;
}

.logo{
    text-align: center;
    max-width: clamp(100px, 20vw, 200px);
    margin: 0 auto;
}

.modal-header,
.modal-footer{
    background-image: linear-gradient(to right, #f83600 0%, #f9d423 100%);
    color: white;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}
[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75;
}

#register-client-form .form-group{
    margin-bottom: 1em;
}

#register-client-form button{
    display: block;
    margin: 0 auto;
}

.form-error{
    color: #a90300;
}