/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
   margin: 0;
   padding: 0;
   height: 100%;
   width: 100%;
   box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background:#42e0f5;
}

/* Container */
.container {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Circular Vector Background */
.circle-bg {
  position: absolute;
  width: 150px;
  height: 150px;
  background: azure;
  border-radius: 50%;
  top: 5%;
  left: 2%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.2;
}


/* Circular Vector Background */
.circle-bg-2 {
position: absolute;
  width: 250px;
  height: 250px;
  background: azure;
  border-radius: 50%;
  top: 6%;
  left: 93%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.2;
}


.circle-bg-3 {
position: absolute;
  width: 500px;
  height: 500px;
  background: azure;
  border-radius: 50%;
  top: 23%;
  left: 93%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.2;
}



.circle-bg-4 {
position: absolute;
  width: 170px;
  height: 170px;
  background: azure;
  border-radius: 50%;
  top: 95%;
  left: 20%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.2;
}







/* Login Form */
.login-form {
	position: relative;
  z-index: 1;
  background: transparent;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 750px;
  text-align: left;
  max-height: 420px;
  height: 100%;
}



.right-ad-div{
	float:left;
	width:45%;
	margin-right:5%;
	
	
	
	
	
	
	
}


.login-form-field{
	float:right;
	width:50%;
	margin-top:10%;
	
	
	
	
	
	
	
}


.logo-icon{
	width:90%;
	height:30%;

	
	
	
}


.logo-icon img{
	width:18%;
	height:80%;
	
	
	
}






.login-form h2 {

  color: #333;
  font-family: Georgia, serif;
}
.login-form span {
font-family: 'Trebuchet MS', sans-serif;
color:whitesmoke;;

}


.login-form input {
  width: 100%;
  padding: 10px 10px 10px 35px; /* extra left padding for icon */
  margin-bottom: 1rem;
   box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 0px;
  background-color: azure;
  border: 2px solid cyan;
}



.login-form .fa-user {
   position: absolute;
  left: 51%;
  top: 46%;
  transform: translateY(-50%);
  color: cyan;
  }

.login-form .fa-lock {
      position: absolute;
      left: 51%;
      top: 59%;
      transform: translateY(-50%);
      color:  cyan;
      pointer-events: none; /* Allows input interaction */
}



.login-form button {
  width: 30%;
  padding: 0.75rem;
  background-color: aqua;
  border: none;
  border-radius: 0px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.login-form button:hover {
  background-color: #5a54d1;
}



.registration-form{
	position: relative;
  z-index: 1;
  background: transparent;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 750px;
  text-align: left;
  max-height: 580px;
  height: 100%;
	
	
	
}



.registration-form-head{
	width:100%;
	height:40px;

	
	
	
}


.registration-form-logo{
	width:30%;
	float:left;

	
	
	
}



.registration-form-title{
	width:70%;
	float:left;

	
	
	
}


.registration-form-title h2{

color: aliceblue;
  font-family: Georgia, serif;


}





.registration-form-body{
	 background: transparent;
  padding: 2.5rem;

  width: 100%;
  max-width: 750px;
  text-align: left;
  max-height: 450px;
  height: 100%;
	
	
	
	
	
	
}



.registration-form-body input {
  width: 40%;
  padding: 10px 10px 10px 7px;
  margin-bottom: 1rem;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 0px;
  background-color: azure;
  border: 2px solid cyan;
  float: left;
  margin-right: 5%;
}



.registration-form-body Select {
  width: 40%;
  padding: 10px 10px 10px 7px;
  margin-bottom: 1rem;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 0px;
  background-color: azure;
  border: 2px solid cyan;
  float: left;
  margin-right: 5%;
}







.registration-form button {
  width: 30%;
  padding: 0.75rem;
  background-color: aqua;
  border: none;
  border-radius: 0px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.registration-form button:hover {
  background-color: #5a54d1;
}





/* Media Queries */

/* Tablets */
@media (max-width: 768px) {
  .circle-bg {
    width: 100px;
    height: 100px;
  }

  .login-form {
    padding: 2rem;
    max-width: 90%;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .circle-bg {
    width: 50px;
    height: 50px;
  }

  .login-form {
    padding: 1.5rem;
  }

  .login-form h2 {
    font-size: 1.5rem;
  }
}
