﻿
.*, body {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

.html, body {
    /* height: 100%; */
    background-color: #5599ff;
}

.form-content {
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 20px;
}

.FormHead, .FormBody {
    padding: 40px;
    margin: 0px auto;
    max-width: 1200px;
}

.FormHead {
    background-color: #1f3e95;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px 10px 0 0;
    text-align: left;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.FormBody {
    background-color: white;
    color: #023E73;
    border-radius: 5px 5px 5px 5px;
    min-height: 10vh;
    vertical-align: middle;
    margin-top: 10%;
}

.formketqua {
    background-color: white;
    color: #023E73;
    border-radius: 5px 5px 5px 5px;
/*    min-height: 10vh;*/
    vertical-align: middle;
}

.form-content h1 {
    color: #1f3e95;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}



.form-content input[type=text], select {
    width: 100%;
    padding: 9px 20px;
    text-align: left;
    border: 1px solid;
    outline: 0;
    border-radius: 6px;
    /*background-color: #d6dfe7;*/
    font-size: 15px;
    font-weight: 300;
    color: #404040;
    border-color:grey;
    height:36.5px;
}


/*.btn-primary {
    background-color: #1f3e95;
    outline: none;
    border: 64px;*/
    /* border-radius: 64px; */
    /*box-shadow: none;
    width: 100px;*/
    /* padding: 12px 36px; */
/*}*/

    /*.btn-primary:hover, .btn-primary:focus, .btn-primary:active {*/
        /* background-color: aqua; */
        /*color: black;
        outline: none !important;
        border: none !important;
        box-shadow: none;
    }*/

.form-content form-items {
    position: static !important;
    width: 100%;
    padding: 8px 20px;
    border-radius: 6px;
    text-align: left;
    background-color: #fff;
    border: 0;
    font-size: 15px;
    font-weight: 300;
    color: #8D8D8D;
    outline: none;
    resize: none;
    height: 120px;
    -webkit-transition: none;
    transition: none;
    margin-bottom: 14px;
}

.fform-items textarea:hover, .form-items textarea:focus {
    border: 0;
    background-color: #ebeff8;
    color: #8D8D8D;
}


.invalid-feedback {
    color: #ff606e;
}

.valid-feedback {
    color: #2acc80;
}

.col-4 {
    text-align: right !important;
}

.form-title {
    text-align: center;
}

.loading {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.bar {
    height: 10px;
    width: 100%;
    background: #e0e0e0;
    margin-bottom: 8px;
    border-radius: 4px;
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.select2-search__field:focus {
    outline: none;
}