* {
      margin: 0; padding: 0; box-sizing: border-box;
    }

    body {
      background: linear-gradient(135deg, #84fab0, #8fd3f4);
      font-family: 'Poppins', sans-serif;
      height: 100vh;
	  
    }

    .container {
margin-top:1%;
	display:flex;
	justify-content:center;
	align-items:center;
	  background:pink;
	  width:100%;
	  max-width:70%;
    }

    .fixed_row_reg {
      text-align: left;
    margin-top:0%;
    margin-left: 0%;
        
    }


    .register-box {

      background: #fff;
	  width:100%;
      padding: 30px 25px;
      border-radius: 15px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
      animation: fadeIn 0.6s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .register-box h2 {
      text-align: center;
      color: #333;
      margin-bottom: 20px;
    }

    .input-group {
      margin-bottom: 15px;
    }

    .input-group label {
      display: block;
      font-size: 14px;
      margin-bottom: 5px;
      color: #444;
    }

    .input-group input {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
    }

    .gender {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
    }

    .gender label {
      font-size: 14px;
    }

    .terms {
      font-size: 13px;
      margin-bottom: 15px;
    }

    .terms input {
      margin-right: 5px;
    }

    button {
      width: 100%;
      padding: 12px;
      background: #4caf50;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    button:hover {
      background: #45a049;
    }

    .google-btn {
      margin-top: 15px;
      background: #fff;
      color: #444;
      border: 1px solid #ccc;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    #otp_section {
       display:none; 
        margin-block: 1.5rem;
    }
#otp_btn, #otp_input{
        margin-block: 1.5rem;
}

#otp_input{
        height: 50px;
        padding:5px;
}
    .google-btn img {
      width: 20px;
      height: 20px;
    }

    @media (max-width: 500px) {
      .register-box {
        padding: 20px;
        border-radius: 10px;
      }
    }