/* Importing the Poppins font from Google Fonts to ensure consistent typography across the site */
@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");

/* Global styles to reset default browser styles and apply a consistent look */
* {
  margin: 0; /* Resetting margin */
  padding: 0; /* Resetting padding */
  box-sizing: border-box; /* Ensuring consistent box model */
  font-family: "Poppins", sans-serif; /* Applying the Poppins font globally */
  text-decoration: none; /* Removing default link underlines */
  list-style: none; /* Removing default list styles */
}

/* Customizing material symbols to match the site's design */
.material-symbols-outlined {
  /* Adjusting font variation settings for material symbols to ensure they fit the design */
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* Setting the background of the body to create a gradient effect */
body {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(201, 214, 255, 1) 100%
  );
  height: 100vh; /* Ensuring the body fills the viewport */
}

/* Styling the form container to be centered and visually appealing */
form {
  width: 850px; /* Setting the form width */
  height: 550px; /* Setting the form height */
  background-color: #fff; /* Setting a white background for the form */
  border-radius: 30px; /* Adding a rounded corner effect */
  position: absolute; /* Positioning the form absolutely */
  left: 50%; /* Centering horizontally */
  top: 50%; /* Centering vertically */
  transform: translate(-50%, -50%); /* Adjusting position to ensure perfect centering */
}

/* Styling the left part of the form to create a visually appealing section */
div.left {
  background-color: #7494ec; /* Setting a blue background for the left part */
  width: 50%; /* Setting the width to half of the form */
  height: inherit; /* Inheriting the height from the form */
  border-radius: 30px 30% 30% 30px; /* Creating a unique rounded corner effect */
  position: relative; /* Positioning relatively for child elements */
}

div.left div {
  /* Centering content within the left part both horizontally and vertically */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center; /* Centering text */
  line-height: 40px; /* Adjusting line height for better readability */
  width: max-content; /* Ensuring the content width is dynamic */
}

div.left div p {
  color: #fff; /* Setting text color to white */
  font-size: 36px; /* Setting font size for headings */
  margin: 0; /* Removing margins */
  font-weight: bolder; /* Making the font bolder */
}

div.left div a {
  display: block; /* Displaying links as blocks */
  color: #fff; /* Setting link color to white */
  text-decoration: none; /* Removing default link underlines */
  font-size: 14.5px; /* Setting font size for links */
}

div.left div input[type="submit"],input[type="button"] {
  /* Styling the submit button on the left side to match the design */
  border: 2px solid #fff; /* Adding a white border */
  width: 160px; /* Setting the button width */
  height: 46px; /* Setting the button height */
  border-radius: 8px; /* Adding a rounded corner effect */
  background-color: transparent; /* Making the background transparent */
  color: #fff; /* Setting text color to white */
  cursor: pointer; /* Changing the cursor to a pointer */
  font-size: 16px; /* Setting font size */
  font-weight: bold; /* Making the font bold */
}
@media (min-width: 768px) {
  .desktop-br {
    display: block;
  }
}
@media (max-width: 767px) {
  .desktop-br {
    display: none;
  }
}


/* Styling the right part of the form to create a functional section */
div.right {
  width: 50%; /* Setting the width to half of the form */
  height: 100%; /* Setting the height to full */
  position: absolute; /* Positioning absolutely */
  left: 50%; /* Centering horizontally */
  top: 0; /* Positioning from the top */
  padding: 40px; /* Adding padding for better spacing */
  overflow: hidden; /* Hiding any overflow */
}

div.right div {
  /* Centering content within the right part both horizontally and vertically */
  position: absolute;
  left: 50%;
  top: 40%;
  text-align: center; /* Centering text */
  transform: translate(-50%, -50%); /* Adjusting position for perfect centering */
  box-sizing: border-box; /* Ensuring consistent box model */
}

div.right h1 {
  font-size: 36px; /* Setting font size for headings */
  text-align: center; /* Centering text */
  font-weight: bold; /* Making the font bold */
  opacity: 70%; /* Adjusting opacity for a subtle effect */
}

div.right input {
  /* Styling form inputs for better usability and design */
  padding: 13px 50px 13px 20px; /* Adding padding for better spacing */
  margin: 10px 0; /* Adding margins for better spacing */
  background-color: #efefef; /* Setting a light gray background */
  border: none; /* Removing default borders */
  border-radius: 8px; /* Adding a rounded corner effect */
  font-size: 16px; /* Setting font size */
}

div.right input:focus {
  /* Removing outline on focus to improve design consistency */
  outline-color: transparent;
}

div.right div span {
  /* Positioning icons within the form */
  position: absolute;
  left: 85%;
  display: block;
}

div.right .person {
  top: 23%; /* Positioning the person icon */
}

div.right .lock {
  top: 44%; /* Positioning the lock icon */
}

div.right div a {
  color: #000; /* Setting link color to black */
  display: block; /* Displaying links as blocks */
  margin-bottom: 20px; /* Adding margin for better spacing */
}

div.right div button {
  /* Styling the submit button on the right side to match the design */
  background-color: #7494ec; /* Setting a blue background */
  width: 100%; /* Setting the button width to full */
  height: 48px; /* Setting the button height */
  /* margin: 20px 0 20px 0; */ /* Optional margin for spacing */
  color: #fff; /* Setting text color to white */
  border: none; /* Removing default borders */
  border-radius: 8px; /* Adding a rounded corner effect */
  cursor: pointer; /* Changing the cursor to a pointer */
  font-size: 16px; /* Setting font size */
  font-weight: bold; /* Making the font bold */
}

div.right div p {
  margin: 15px 0; /* Adding margin for better spacing */
}

div.right div div {
  margin-top: 20px; /* Adding margin for better spacing */
  top: 100%; /* Positioning relative to the parent */
  width: 100%; /* Setting the width to full */
}

div.right div div a {
  /* Styling social media icons for better design consistency */
  display: inline-block; /* Displaying icons inline */
  margin: 0 8px; /* Adding margin for better spacing */
  border: 2px solid #ccc; /* Adding a light gray border */
  padding: 6px 5px 0 5px; /* Adding padding for better spacing */
  text-align: center; /* Centering text */
  border-radius: 8px; /* Adding a rounded corner effect */
  font-size: 24px; /* Setting font size */
  width: 17%; /* Setting the width as a percentage */
  height: 50px; /* Setting the height */
}
@media (max-width: 768px) {
  form {
    width: 90%;
    height: auto;
    flex-direction: column;
    display: flex;
    border-radius: 20px;
  }

  div.left, div.right {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0;
    position: relative;
  }

  div.left {
    border-radius: 20px 20px 0 0;
    padding: 40px 20px;
  }

  div.left div {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
    text-align: center;
  }

  div.right {
    position: relative;
    left: 0;
    padding: 40px 20px;
  }

  div.right div {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
  }

  div.right div span {
    left: 90%;
  }

  div.right input {
    width: 100%;
  }

  div.right div button {
    width: 100%;
  }

  div.right div div a {
    width: 20%;
    font-size: 20px;
  }
}
.otp-modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.otp-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}



/*--------Thangasamy---------*/
.login-t form{
      width: 540px;
    border-radius: 0;
    height: 100%;
    background-color: #7494ec;
    background-image: url(/assets/images/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}


.login-t form p{
    font-size: 33px;
    font-weight: 600;
    text-align: center;
    color: #fff;
        margin-bottom: 10px;
}
.login-t form h3{
    color:#fff;
    margin-bottom:20px;
    text-align: center;
}
.login-t form .main{
      position: relative;
 
    padding: 30px 20px;
}
.login-t form .main:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -0.5px;
    top: 0;
  
    background: linear-gradient(1deg, #ff0000, #b51d1d); 
    z-index: -1;
   
}
.login-t form .main > input{
      width: 100%;
    height: 60px;
    border: 1px solid #eee;
    background-color: #fff;
    padding: 10px;
    color:#000000;
    font-weight:700;
     margin-bottom:20px;
     border-radius: 3px;
     font-size:20px;
}
.login-t form .main > button{
        background: #000000;
    width: 100%;
    height: 50px;
    border: none;
    margin-bottom: 15px;
    color: #ffd600;
    font-weight: 600;
    font-size: 25px;
    border-radius: 3px;

}
.login-t form .links{
    display:flex;
    justify-content:space-between;
}
.login-t form .main > a{
        text-align: end;
    display: inline-block;
    width: 100%;
    color:#fff;
    margin-bottom:30px;
}

.login-t form .links a{
        width: 100%;
    border-radius: 3px;
}
.login-t form .links  input{
        width: 100%;
        margin-bottom:20px
}

@media only screen and (max-width: 600px) {
    .login-t form{
        width:100% !important;
    }
}
/*.login-t form .left{*/
/*    display:none;*/
/*}*/
/*.login-t form .right{*/
/*    width:100%;*/
/*    position:inherit;*/
/*    left:inherit;*/
/*    top:inherit;*/
/*}*/
/*.login-t form .right div{*/
/*         position: inherit; */
/*    left: inherit;*/
/*    top:inherit;*/
/*     text-align: inherit; */
/*     transform: inherit; */
/*     box-sizing: inherit;*/
/*}*/