.modal-demande-credit{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
}

.modal-demande-credit .modal-content{
    background:#000081;
    width:700px;
    max-width:90%;
    margin:10% auto;
    padding:30px;
    border-radius:10px;
    position:relative;
}

.modal-demande-credit .close-modal{
    position:absolute;
    right:15px;
    top:10px;
    font-size:28px;
    cursor:pointer;
}
.row{
	display: flex;
}
.col-modal {
	margin: 5px;
	width: 50%;
}
.col-modal label{
	margin-bottom: 15px;
	color: #fff;
}
.col-full label{
	margin-bottom: 15px;
	color: #fff;
}
.col-full{
	width: 100%;

}
.col-full textarea{
	width: 100%;
  height: 100px;
}
.col-modal .form-control{
	border-radius: 0 15px 0 15px;
}
.modal-demande-credit h2{
	font-size: 40px;
  font-weight: 700;
  color: #ec0f1e;
  text-align: center;
}
.color-red{
	color: #ec0f1e;
}
.modal-demande-credit .btn-submit{
	background: #ec0f1e;
  border-color: #ec0f1e;
  color: #fff;
  font-size: 16px;
  padding: 13px 50px;
  border-radius: 0 20px 0 20px;
}



.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #f00, #f00, #b10a0a, #d43047, #251ee5, #f2242d, #c50e16, #3e30ec, #f00);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

/*.glow-on-hover:hover:before {
    opacity: 1;
}*/

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}