@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

#reg_login {
    position: relative;
    min-height: 100vh;
    /*background-color: #f8dd30; */
    /*background-image: url('../Images/back5.jpg');*/
    background: linear-gradient(135deg, #001f3f, #2a8bfe, #0eff) ;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/*#reg_login {
    position: relative;
    min-height: 100vh;
    background-image: linear-gradient(to right, #007cf0, #00dfd8);*/ /* Blue gradient */
    /*background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}*/


#reg_login .container {
  position: relative;
  width: 800px;
  height: 500px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#reg_login .container .user {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

#reg_login .container .user .imgBx {
  position: relative;
  width: 50%;
  height: 100%;
  transition: 0.5s;
}

#reg_login .container .user .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#reg_login .container .user .formBx {
  position: relative;
  width: 50%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  transition: 0.5s;
}

#reg_login .container .user .formBx form h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  color: #555;
}

#reg_login .container .user .formBx form input {
  position: relative;
  width: 100%;
  padding: 10px;
  background: #f5f5f5;
  color: #333;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 8px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 300;
}

    #reg_login .container .user .formBx form input:hover {
        /*border: 1px solid #62260dab;*/
        border: 1px solid #017eff;
    }

    #reg_login .container .user .formBx form input[type="submit"] {
        max-width: 100%;
        background: #4a97ff;
        color: #fff;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
    }

        #reg_login .container .user .formBx form input[type="submit"]:hover {
            transition: 0.5s;
            /*background: #62260d;*/
            background: #017eff
            /*background: linear-gradient(to right, #007cf0, #00dfd8);*/
        }

#reg_login .container .user .formBx form .signup {
  position: relative;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #555;
  text-transform: uppercase;
  font-weight: 300;
}

#reg_login .container .user .formBx form .signup a {
  font-weight: 600;
  text-decoration: none;
  color: #62260d;
}

#reg_login .container .signupBx {
  pointer-events: none;
}

#reg_login .container.active .signupBx {
  pointer-events: initial;
}

#reg_login .container .signupBx .formBx {
  left: 100%;
}

#reg_login .container.active .signupBx .formBx {
  left: 0;
}

#reg_login .container .signupBx .imgBx {
  left: -100%;
}

#reg_login .container.active .signupBx .imgBx {
  left: 0%;
}

#reg_login .container .signinBx .formBx {
  left: 0%;
}

#reg_login .container.active .signinBx .formBx {
  left: 100%;
}

#reg_login .container .signinBx .imgBx {
  left: 0%;
}

#reg_login .container.active .signinBx .imgBx {
  left: -100%;
}

@media (max-width: 991px) {
  #reg_login .container {
    max-width: 400px;
  }

  #reg_login .container .imgBx {
    display: none;
  }

  #reg_login .container .user .formBx {
    width: 100%;
  }
}

.gradient-text {
    font-size: 24px;
    background: linear-gradient(to right, #62260d, red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 10px 0 0 0;
}

#topHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 9999;
}

    #topHeader img {
        height: 40px;
        margin-top: 10px;
    }

    #topHeader .collegeName {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 38px;
        font-weight: 600;
        color: white;
        padding-top: 10px;
        letter-spacing: 1px;
        text-transform: uppercase;
        white-space: nowrap;
    }

@media (max-width: 768px) {
    #topHeader {
        flex-direction: column;
        height: auto;
        padding: 10px;
        text-align: center;
    }

        #topHeader img {
            margin: 0 auto 5px auto;
        }

        #topHeader .collegeName {
            font-size: 16px;
            margin: 5px 0 0 0;
        }
}
