input[type=checkbox] {
    margin: 0;
    padding: 0;
    height: 17px;
}

.wrapper {
    min-height: 100vh;
    display: grid;
}

.container {
    width: 100%;
    height: auto;
    background-color: white;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
}

.flex-align-center {
    display: flex;
    justify-content: center;
    gap: 5px;
}

button {
    cursor: pointer;
    background-color: #0086e4;
    color: white;
    border: none;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 1px;
    width: 100%;
    height: 40px;
    transition: 300ms background-color ease-in-out;
}
button:hover {
    background-color: #18a0ff;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}
.input-group__label {
    display: block;
    position: absolute;
    top: 0;
    line-height: 40px;
    color: #aaa;
    left: 5px;
    padding: 0 5px;
    transition: line-height 200ms ease-in-out, font-size 200ms ease-in-out, top 200ms ease-in-out;
    pointer-events: none;
}
.input-group__input {
    width: 100%;
    height: 40px;
    border: 1px solid #dddddd;
    border-radius: 3px;
    padding: 0 10px;
}
.input-group__input:not(:-moz-placeholder-shown) + label {
    background-color: white;
    line-height: 10px;
    opacity: 1;
    font-size: 10px;
    top: -5px;
}
.input-group__input:not(:-ms-input-placeholder) + label {
    background-color: white;
    line-height: 10px;
    opacity: 1;
    font-size: 10px;
    top: -5px;
}
.input-group__input:not(:placeholder-shown) + label, .input-group__input:focus + label {
    background-color: white;
    line-height: 10px;
    opacity: 1;
    font-size: 10px;
    top: -5px;
}
.input-group__input:focus {
    outline: none;
    border: 1px solid #0086e4;
}
.input-group__input:focus + label {
    color: #0086e4;
}

.tabs {
    display: flex;
    flex-flow: row wrap;
}
.tabs__text {
    flex: 1;
    margin: 0;
    cursor: pointer;
    padding: 20px 30px;
    font-size: 1.2em;
    opacity: 0.5;
    background-color: #eeeeee;
    border-top: 3px solid #eeeeee;
    transition: border-top 300ms ease-out;
    transform-origin: top;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}
.tabs__content {
    display: none;
    flex: 1 1 100%;
    order: 99;
    padding: 40px 30px 30px 30px;
}
.tabs__button {
    visibility: hidden;
    height: 0;
    margin: 0;
    position: absolute;
}
.tabs__button:checked + .tabs__text {
    color: #0086e4;
    opacity: 1;
    background-color: white;
    border-top: 3px solid #0086e4;
}
.tabs__button:checked + .tabs__text + .tabs__content {
    display: block;
}
