/**
* All of the CSS for your public-facing functionality should be
* included in this file.
*/
.weup-form{
    padding: 15px;
    position: relative;
}
.weup-form [type="text"],
.weup-form [type="date"],
.weup-form [type="time"],
.weup-form [type="email"],
.weup-form select{
    background: #fff;
    border: 1px solid #ced4da;
    width: 100%;
    background-clip: padding-box;
    color: #495057;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    height: 40px;
    font-size: 13px;
    margin-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
}
.weup-form [type="text"]:focus::-webkit-input-placeholder,
.weup-form [type="email"]:focus::-webkit-input-placeholder,
.weup-form textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

.weup-form [type="text"]:focus:-ms-input-placeholder ,
.weup-form [type="email"]:focus:-ms-input-placeholder ,
.weup-form textarea:focus:-ms-input-placeholder {
    color: transparent;
}
.weup-form [type="text"]:focus::placeholder ,
.weup-form [type="email"]:focus::placeholder ,
.weup-form textarea:focus::placeholder {
    color: transparent;
}
.weup-form textarea{
    background: #fff;
    border: 1px solid #ced4da;
    width: 100%;
    background-clip: padding-box;
    color: #495057;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    min-height: 100px;
    font-size: 13px;
    padding-left: 5px;
    padding-right: 5px;
}
.weup-form select option{
    color: #495057;
    background-clip: padding-box;
}
.weup-form label{
    color: #495057;
    font-weight: 700;
    font-size: 13px;
}
.weup-form .btn-submit{
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 15px;
    border:none;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    text-align: center;
}
.weup-form .loader-wrap{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background: rgba(255,255,255,0.85);

}
.weup-form .loader {
    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin: auto;
}

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