body {
    background: url('../images/back.jpg');
    height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fs-tiny {
    font-size: 0.7rem;
}

.frosted {
    /* background: rgba(255, 255, 255, 0.15) !important; */
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 6px 8px 0 rgba(255, 255, 255, 0.321) !important;
    backdrop-filter: blur(90px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 7px !important;
    /* padding: 2rem !important; */
    color: whitesmoke;
}

.frosted-shadow {
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.37) !important;
}

.card {
    text-shadow: 1px 1px 1px rgba(66,66,66,0.99) !important;
}

.btn-outline-success {
    color: white !important;
    border-color: rgba(13, 185, 13, 0.616) !important;
    background-color: rgba(255, 255, 255, 0.162);
}

.btn-outline-danger {
    color: white !important;
    border-color: rgb(255, 92, 92) !important;
    background-color: rgba(255, 255, 255, 0.162);
}

.btn-outline-primary {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.162);
}

textarea.form-control, input.form-control, span.input-group-text {
    background-color: transparent !important;
    color: white !important;
}

::placeholder {
    color: rgba(255, 255, 255, 0.679) !important;
}

.error-border {
    border-left: 6px solid red !important;
}

.swal2-success-circular-line-left {
    background-color: transparent !important;
}

.swal2-success-circular-line-right {
    background-color: transparent !important;
}

.swal2-success-fix {
    background-color: transparent !important;
}

@media only screen and (max-width: 350) {
    .btn {
        font-size: 0.6rem !important;
    }
}

.fade-in {
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid rgb(206, 206, 206);
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-left: 4px solid #FF3D00;
    border-bottom: 4px solid transparent;
    animation: rotation 0.5s linear infinite reverse;
}

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