.errorlist {
    margin-bottom: 0;
}

.p-select {
    height: 100%;
    border: none;
    outline: none;
    border-bottom: 2px solid #198dc7;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    font: inherit;

    &:focus + .p-span,
    &:not(:default) + .p-span{
        color: #198dc7;;
        transform: translate(0, -100%) scale(.8);
    }
}

.p-input {
    height: 100%;
    border: none;
    outline: none;
    border-bottom: 2px solid #198dc7;
    font: inherit;

    &:focus + .p-span,
    &:not(:placeholder-shown) + .p-span{
        color: #198dc7;;
        transform: translate(0, -100%) scale(.8);
    }
}

.p-label {
    display: grid;
    width: 100%;

    grid-template-areas: "input";

    > *{
        grid-area: input;
    }
}

.check-label {
  max-width: 80%;
}

.p-span {
    transform-origin: left;
    transition: transform .3s, color .3s;
}

.container-shadow {
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.5);
    background-color: white;
}

body {
    background-color: rgba(252, 242, 79, 0.78);
}

.big-title {
    color: #198dc7;;
    font-weight: bold;
    text-align: center;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1056;
  }

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #198dc7; !important;;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}