:root {
    --primary-color : rgba(143, 42, 138, 1);
}

html, body {
    background-color: #eeeeee !important;
    height: 100% !important;
    width: 100%;
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    height: 100% !important;overflow: auto !important;
}

* {
    margin: 0;padding: 0;
    box-sizing: border-box;
}

i.icon {
    position: absolute;top: 50%;left: 1rem;transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-color);
}

form input { padding-left: 2.7rem !important; }
form select { padding-left: 2.5rem !important; }

button[type=submit] {
    background-color: var(--primary-color);
    opacity: .95;
}
button[type=submit]:focus {
    opacity: 1;
}
button[type=submit]:hover {
    opacity: .9;
}

.radius-lg {
    border-radius: 20px;
}

.radius-lg-right-up-top {
    border-radius: 0 20px 20px 0;
}

.radius-md {
    border-radius: 10px;
}

.bg-ungu {
    background-color: #8f2a8a;
}

.btn-light {
    background-color: #fff!important;
}

@media only screen and (max-width: 767px) {
    .radius-lg-right-up-top {
        border-radius: 0 0 20px 20px;
    }
    
    .radius-lg {
        border-radius: 20px 20px 0 0;
    }
}

small.error_prefix { color: #fff !important; }