* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 13.3px;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #F5F5F5;
}

svg {
    width: 175px;
    height: 40px;
}

.banner {
    min-width: 100%;
    height: 60px;
    padding: 15px 10% 20px 10%;
    background-color: #fff;
}

button {
    background: #0099df;
    border-radius: 4px;
    color: #fff;
    border: none;
    outline: 0;
    width: 105px;
    height: 44px;
    line-height: normal;
    text-align: center;
    font-size: 16px;
    display: table
}

form {
    padding-top: 3%;
    margin: 0 auto;
    display: flex;
    width: 500px;
    flex-direction: column;
    align-items: center;
}

form .input {
    background-color: red;
}

.form-field {
    width: 220px;
    height: 20px;
    position: relative;
    background: white;
    border-radius: 0px;
    border: 0.5px solid #CCCCCC;
    padding: 0 10px;
}

.two-column {
    display: flex;
    width: 100%;
}

.form-field:hover {
    border-color: black;
}

iframe {
    width: 100%;
    height: 100%;
}

.form-field.error {
    border-color: red;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.input-fields {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.input-fields label {
    width: 150px !important;
    display: flex;
    white-space: nowrap;
}

#cuotas {
    width: 220px;
    height: 20px;
    position: relative;
    background: white;
    border-radius: 0px;
    border: 0.5px solid #CCCCCC;
    padding: 0 10px;
}