.verification-container {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url("../images/login_img.gif");
    background-size: cover;
    height: 93vh;
    position: relative;
    overflow: hidden;
}

.header {
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    background-color: transparent;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-10 {
    flex: 1;
    padding-top: 28px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.logo {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    font-size: 35px;
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    color: #ffffff;
    white-space: nowrap;
    opacity: 1;
    transform: translateY(-50%);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5),
                 4px 4px 9px rgba(0, 0, 0, 0.5),
                 8px 8px 12px rgba(0, 0, 0, 0.5);
}

.moving-text {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    animation: moveText 10s linear infinite, appearDisappear 10s infinite;
}

.moving-text span {
    display: inline-block;
    transform-style: preserve-3d;
    animation: rotateLetters 5s alternate infinite;
}

@keyframes moveText {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

@keyframes appearDisappear {
    0%, 10%, 90%, 100% {
        opacity: 1;
        color: #00ff00;
    }
    25% {
        opacity: 1;
        color: #ff9900; 
    }
    50% {
        opacity: 1;
        color: #ffffff; 
    }
    75% {
        opacity: 1;
        color: #0000ff;
    }
}

@keyframes rotateLetters {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.verify-form{
	margin-left:38%;
	margin-right:29%;
	margin-top:25%;
}
.font-weight{
	font-size: 18px;
	font-weight:bold;
	color:#ffff;
}
.signup-text{
	font-size: 18px;
	font-weight:bold;
	font-family:areal;
}
.login-message{
	margin-left: 516px;
    margin-right: 516px;
    margin-bottom: 0px;
    padding-bottom: 7px;
    padding-top: 7px;
    top: 6px;
}

