@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
}

form {
    width: 300px;
}
input {
    border: none;
}
button {
    margin-bottom: 10px;
}

header {
    text-align: right;
}
header button {
    width: auto;
}

.centralize {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-field {
    margin-bottom: 10px;
}

input,
button,
select {
   padding: 10px;
   width: -webkit-fill-available;
}
input[type="radio"] {
    width: auto;
}

.loading {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
}
.loading label {
    font-size: 24px;
}

button {
    cursor: pointer;
}
button:active {
    opacity: 0.8;
}
button[disabled] {
    opacity: 0.8;
}

button.fab {
    width: 54px;
    height: 54px;
    border-radius: 50px;
    border: none;
    font-size: 24px;
    box-shadow: 2px 2px 2px gray;
}
button.fab.fixed {
    position: fixed;
}
button.fab.bottom {
    bottom: 20%;
}
button.fab.right {
    right: 32px;
}

.clear {
    background: transparent;
    border: none;
    color: #000FFF;
}
.solid {
    background-image: linear-gradient(45deg, #000FFF, #00CED1);
    border: none;
    color: #FFFFFF;
}
.outline {
    background: transparent;
    color: white;
    border: 1px solid white;
}
.outline.danger {
    color: red;
    border-color: red;
}

.error {
    background: red;
    color: white;
    display: none;
}