﻿/*bootstrap class override for login page only*/
.form-control {
    border-radius: 0px;
    margin: 12px 3px;
    height: 40px;
}

.logo {
    margin: auto;
    text-align: center;
}

    .logo img {
        height: 80px;
    }
/*footer*/
.footer a {
    color: #000;
    text-decoration: none;
}

.footer {
    color: #000;
    text-align: center;
}
/*footer end*/


/*for logintemplate blue*/
.grayBody {
    background-color: #E9E9E9;
}

.loginbox {
    border-top: 5px solid #ef1725;
    background-color: #fff;
    padding: 20px;
    border-bottom: 5px solid #747476;
    box-shadow: 0 10px 10px -2px rgba(0,0,0,0.12), 0 -2px 10px -2px rgba(0,0,0,0.12);
    width: 80%;
    margin: auto !important;
    border-radius: 15px;
}

.singtext {
    font-size: 28px;
    color: #ea2738;
    font-weight: 500;
    letter-spacing: 1px;
}

.submitButton {
    margin-left: 50px;
    margin-top: 50px;
    padding: 10px 60px;
    border: none;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0px 5px 10px grey;
    text-decoration: none;
    color: purple;
    font-size: large;
}

    .submitButton:hover, .submitButton:focus {
        color: #ff0000;
        outline: none;
    }

.forGotPassword {
    background-color: #F2F2F2;
    padding: 15px 0px;
    text-align: center;
}

    .forGotPassword:hover {
        box-shadow: 0 10px 10px -2px rgba(0,0,0,0.12);
    }

    .forGotPassword a {
        color: #000;
        outline: none;
    }

        .forGotPassword a:hover, .forGotPassword a:active, .forGotPassword a:focus {
            text-decoration: none;
            outline: none;
        }

.footerLine {
    color: white;
    background-color: darkviolet;
    position: fixed;
    margin-left: 7%;
    color: white;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

img {
    /*position: absolute;*/
    width: 200px;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}

.container {
    width: 400px;
    color: #fff;
    border-radius: 15px;
    background: rgb(255 255 255);
    margin-top: 168px;
}

.input-box {
    position: relative;
    width: 100%;
    height: 100%;
}

    .input-box input {
        width: 100%;
        height: 100%;
        background: transparent;
        border: none;
        outline: none;
        border-radius: 20px;
        color: #000000;
        border: 1px solid #bfbfbf;
        font-size: 16px;
        padding: 10px;
    }

    .input-box i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
    }

.remember {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin: -10px 0 15px;
}

    .remember a {
        border-bottom: 2px solid transparent;
        color: #fff;
    }

        .remember a:hover {
            /* border-bottom: 2px solid #fff; */
            color: #000dff;
        }

.btn {
    position: relative;
    width: 10em;
    height: 40px;
    color: #eee;
    font-family: Lato, sans-serif;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    background: #1F1E1E;
    border: none;
    border-radius: 4em;
    outline: none;
    cursor: pointer;
    transition: all 0.5s;
    margin-top: 0px;
    margin: auto;
    display: block;
}

    .btn:hover {
        background: transparent;
        transform: scale(1.1);
    }

.register {
    font-size: 14px;
    margin-top: 20px;
    text-align: center;
}

    .register p a {
        font-weight: 600;
        color: #fff;
        font-size: 18px;
    }

        .register p a:hover {
            color: #000dff;
        }

.loginbtn {
    padding-bottom: 15px;
}