
.student {
    background-image: linear-gradient(270deg, #fd7e1442 0%, #ffffff 52%);
}

.teacher {
    background-image: linear-gradient(143deg, #f58634a3 0%, #f58634 100%);
}

.container-login {
    /*min-height: 100vh;*/
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.login-form {
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    text-align: center;
}

.vidyalogo {
    height: 120px;
    width: auto;
    margin: 30px;
}

.vgilogo {
    height: 140px;
    width: auto;
    margin: 30px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    margin-bottom: 10px;
    width: 85%;
    border: 1px solid rgb(211, 211, 211);
    border-radius: 5px;
    outline: none;
    padding: 12px 10px;
    color: #080808;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    cursor: pointer;
    font-size: 17px;
}

.login-form input:focus {
    border: 0.5px solid #2F476B;
    box-shadow: 0px 0px 3px #2F476B;
}

.login-form input[type="submit"] {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    background: #2F476B;
    display: block;
    margin: 10px auto 0 auto;
    width: 85%;
    border: none;
    border-radius: 5px;
    padding: 15px 12px;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    transition: all 0.4s;
}

    .login-form input[type="submit"]:hover {
        cursor: pointer;
        background: #326974;
    }

.login-form a {
    color: #000;
}

    .login-form a:hover {
        color: #d60101;
    }

/*--------------------------------------------------------------
# marquee alternative
--------------------------------------------------------------*/

.marquee {
    max-height: 480px;
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    /*white-space: nowrap;*/
    overflow: hidden;
    box-sizing: border-box;
    font-size: medium;
}

    .marquee p {
        padding-top: 50%;
        animation: marquee 15s linear infinite;
        text-wrap: normal;
        text-align: justify;
    }

        .marquee p:hover {
            animation-play-state: paused;
        }

@-moz-keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, -100%);
    }
}

@-webkit-keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, -100%);
    }
}

@keyframes marquee {
    0% {
        -moz-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    100% {
        -moz-transform: translate(0, -100%);
        -webkit-transform: translate(0, -100%);
        transform: translate(0, -100%);
    }
}
