/*****************************************************************
Template Designed and Developed by	: FX Magician - IT Team
Author								: Robin Mazumder
Contact Email						: it@fxmagician.com
File Description					: Sign Up CSS File Design
File Name							: signup_style.css
Link								: <link rel="stylesheet" href="assets/css/signup_style.css">
Version								: 8.0
*****************************************************************/

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
.navbar-area {
  background-color: #ffffff;
  color: #fff;
  /* Add any other styles you want */
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}
.wrapper{
  position: relative;
  max-width: 430px;
  width: 100%;
  background: #0077ff;
  padding: 34px;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.wrapper h2{
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  text-align: center;
}
.wrapper h2::before{
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 28px;
  border-radius: 12px;
  background: #4070f4;
}
.wrapper form{
  margin-top: 30px;
}
.wrapper form .input-box{
  height: 52px;
  margin: 18px 0;
}
form .input-box input{
  height: 100%;
  width: 100%;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-weight: 400;
  color: #000000;
  border: 1.5px solid #C7BEBE;
  border-bottom-width: 2.5px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.input-box input:focus,
.input-box input:valid{
  border-color: #4070f4;
}
form .terms-and-conditions{
  display: flex;
  align-items: center;
}
.terms-and-conditions input[type="checkbox"] {
  margin-top: -10px; /* Adjust the value as needed */
  width: 15px; /* Set the desired width */
  height: 15px; /* Set the desired height */
}
.terms-and-conditions a {
  color: #000000; /* Change to your desired color */
}
.terms-and-conditions a:hover {
  color: #ffffff; /* Color on hover */
}
form h3{
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
}
.input-box.button input{
  color: #fff;
  letter-spacing: 1px;
  border: none;
  background: #ff1010;
  cursor: pointer;
}
.input-box.button input:hover{
  background: #7ee7ee;
  color: #ff1010;
}
form .text h3{
 color: #000000;
 width: 100%;
 text-align: center;
}
form .text h3 a{
  color: #ffffff;
  text-decoration: none;
}
form .text h3 a:hover{
  text-decoration: underline;
}

/* Sign In Remember ID CSS */
form .remember-id{
  display: flex;
  align-items: center;
}
.remember-id input[type="checkbox"] {
  margin-top: -10px; /* Adjust the value as needed */
  width: 15px; /* Set the desired width */
  height: 15px; /* Set the desired height */
}