﻿/*style.css*/
@import url('bootstrap.min.css');

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

body {
    font-family: 'Lato', sans-serif;
    background: #fff url(../img/linebg.png) no-repeat center;
    background-size: cover;
    height: calc(100vh);
}

header {
    padding: 8px 0;
    background: #fff;
    border-bottom: 1px solid #efefef;
    z-index: 999;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}

.top-right ul{
    margin:0;
}
.top-right ul li{
    display:inline-block;
    padding:10px 20px;
}
.top-right ul li a{
    text-decoration:none;
    font-size:16px;
    color:#000;
}
    .top-right ul li a:hover {
        color: #dc1313;
    }

.heading1{
    font-size:60px;
    font-weight:900;
    color:#000;
}

.heading3 {
    font-size: 35px;
    font-weight: 400;
    color: #000;
    padding-bottom: 40px;
    padding-top: 11px;
}

.formbox {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 70px 70px;
    width: 493px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-14%, -50%);
    box-shadow: 0 0 27px #ededed;
}

.usericon {
    background: #f7f7f7 url('../img/username.png') no-repeat left;
    background-position: 10px 8px;
}
.pwdicon {
    background: #f7f7f7 url('../img/password.png') no-repeat left;
    background-position: 10px 8px;
}

.formbox h1 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 35px;
}


    .formbox h1::before,
    .formbox h1::after {
        display: inline-block;
        content: "";
        border-top: 1px solid #d45978;        
        width: 47px;
        margin: 0 10px;
        transform: translateY(-10px);
    }

.formbox input[type="text"],
.formbox input[type="password"] {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px 20px;
    outline: none;
    width: 100%;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    padding-left: 50px;
}

.formbox .usericon:focus {
    background: #fffce2 url('../img/username.png') no-repeat left;
    background-position: 10px 8px;
}

.formbox .pwdicon:focus {
    background: #fffce2 url('../img/password.png') no-repeat left;
    background-position: 10px 8px;
}
/*   .formbox input[type="text"]:focus,
        .formbox input[type="password"]:focus {
            border-color: #0bc120;
            background: #fffce2;
            transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
        }*/
.formbox input[type="submit"] {
    border-radius: 4px;
    background: #d45978;
    padding: 12px 20px;
    outline: none;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    color: #fff;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
}
        .formbox input[type="submit"]:hover {
            background: #231f20;
            transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
        }

.fmrow{
    padding-bottom:30px;
}

.middlefom{
    position:absolute;
    padding: 0 60px;
    left:0;
    right:0;
    top:50%;
    margin-top:-220px;
    
}

.rightpic img{
    max-width:100%;
}

@media screen and (max-width:1470px){
    .heading1 {
        font-size:50px;
    }
    .heading3 {
        font-size: 27px;
    }
  }

.linktbn {
    padding-top: 12px;
    display: inline-block;
}
.lable {
    padding-top: 12px;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.ics2img{
    height:100vh;
    display:flex;
    align-items:center;
}

.ics2img img{
    margin-top:-55px;
}

@media screen and (max-width:1401px){
    .ics2img img {
        max-width: 60%;
    }
}



@media screen and (min-width:1402px) and (max-width:1601px) {
    .ics2img img {
        max-width: 70%;
   }

}

@media screen and (min-width:1402px) and (max-width:1450px) {

    .ics2img img {
        max-width: 70%;
    }
    .formbox {
        padding: 45px 55px;
        width: 405px;
    }

    .formbox h1 {
        font-size: 18px;
        margin-bottom: 28px;
    }
}