@keyframes fire {
    0% { text-shadow: 0 0 5px #fff, 0 -5px 5px #ff0, 0 -10px 10px #ff8000, 0 -15px 20px #f00; }
    25% { text-shadow: 0 0 5px #fff, 0 -5px 5px #ff0, 0 -10px 10px #ff8000, 0 -15px 20px #f00, 0 -20px 30px #f00; }
    50% { text-shadow: 0 0 5px #fff, 0 -5px 5px #ff0, 0 -10px 10px #ff8000, 0 -15px 20px #f00, 0 -20px 30px #f00, 0 -25px 40px #f00; }
    75% { text-shadow: 0 0 5px #fff, 0 -5px 5px #ff0, 0 -10px 10px #ff8000, 0 -15px 20px #f00, 0 -20px 30px #f00; }
    100% { text-shadow: 0 0 5px #fff, 0 -5px 5px #ff0, 0 -10px 10px #ff8000, 0 -15px 20px #f00; }
}

@keyframes rain {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 100%; }
}

@keyframes blackFlame {
    0% { text-shadow: 0 0 5px #000, 0 -5px 5px #222, 0 -10px 10px #444, 0 -15px 20px #666; }
    100% { text-shadow: 0 0 2px #000, 0 -2px 2px #222, 0 -4px 4px #444, 0 -6px 6px #666; }
}

.fire-text {
    font-size: 16px;
    font-weight: bold;
    color: #ff4500;
    position: relative;
    display: inline-block;
}

.fire-active {
    animation: fire 0.5s ease-in-out infinite alternate;
}

.rain-effect {
    background-image: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    background-size: 100% 1000%;
    animation: rain 2s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.black-flame {
    color: #333;
    animation: blackFlame 1s ease-in-out infinite alternate;
}

.calm-down {
    animation: blackFlame 3s ease-in-out forwards;
}

#forgotPasswordLink{
	color:#0e0d56;
}

#forgotPasswordLink:hover, #forgotPasswordLink:focus {
    opacity: 0.9;
    color: linear-gradient(90deg, #0e0d56, #a20c00);
}

#align{
	height:100%;
}

.form-group.alignForm {
    margin-bottom: 20px;
}

.form-group.alignForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group.alignForm .input-group {
    width: 100%;
}

.form-group.alignForm .form-control {
    border-radius: 4px;
}

.toggle-password{
	cursor: pointer;
}

.input-group-text.refreshCaptcha{
	cursor: pointer;
}
/* .fire-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fire 0.5s ease-in-out infinite alternate, 
               gradient 5s ease infinite;
}
<div class="card-header  fire-text fire-active  " id="fireText">
							<h5 class="m-0  ">Official Login</h5>
							<div class="rain-effect" id="rainEffect"></div>
						</div>
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
 */

#loginLogo{
	float: right;
    display: block;
 
}

.input-group-text {
    background-color: #fff;
    border-left: none;
}

.form-control:not(:last-child) {
    border-right: none;
}

.msgClass{
	text-align: center;
	padding-top: 10px;
}

#userId {
    text-transform: uppercase;
}

