@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
}

html, body {
  display: grid;
  height: 100%;
  width: 100%;
  place-items: center;
 background-image: url(https://rwasector18.com/images/india.jpg) !important;
 background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

::selection {
  background: #3498db;
  color: #fff;
}

.wrapper {
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
}

.wrapper .title-text {
  display: flex;
  width: 200%;
}

.wrapper .title {
  width: 50%;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
  color: #333;
}

.wrapper .slide-controls {
  position: relative;
  display: flex;
  height: 50px;
  width: 100%;
  margin: 45px 0 20px 0;
  justify-content: space-between;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f1f1f1;
  overflow: hidden;
}
::marker{display: none !important; content: "" !important;}
.ter-cc{font-size: 19px;
    font-weight: 600;
    margin-top: 21px;
    line-height: 27px;}
.signup-link{margin-top: 24px !important;}
.slide-controls .slide {
  width: 100%;
  height: 100%;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  line-height: 50px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.slide-controls label.signup {
  color: #666;
}

.slide-controls .slider-tab {
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  z-index: 0;
  border-radius: 8px;
  background: orange;
  transition: all 0.3s ease;
}

input[type="radio"] {
  display: none;
}

#signup:checked ~ .slider-tab {
  left: 50%;
}

#signup:checked ~ label.signup,
#login:checked ~ label.login {
  color: #fff;
  cursor: default;
}

.wrapper .form-container {
  width: 100%;
  overflow: hidden;
}

.form-container .form-inner {
  display: flex;
  width: 200%;
}

.form-container .form-inner form {
  width: 50%;
  transition: all 0.6s ease;
}

.form-inner form .field {
  height: 48px;
  margin-top: 18px;
  position: relative;
}

.form-inner form .field input,
.form-inner form .field select {
  height: 100%;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0 15px;
  font-size: 15px;
  transition: border-color 0.3s ease;
  background-color: #f9f9f9;
}

.form-inner form .field input:focus,
.form-inner form .field select:focus {
  border-color: #2F80ED;
  outline: none;
  background-color: #fff;
}

.form-inner form .field input::placeholder {
  color: #aaa;
}

.form-inner form .pass-link,
.form-inner form .signup-link {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

.form-inner form .pass-link a,
.form-inner form .signup-link a {
  color: #2F80ED;
  text-decoration: none;
  font-weight: 500;
}

.form-inner form .pass-link a:hover,
.form-inner form .signup-link a:hover {
  text-decoration: underline;
}

form .btn {
  height: 48px;
  width: 100%;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}


form .btn .btn-layer {
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: green !important;
  border-radius: 6px;
  transition: all 0.4s ease;
}

form .btn:hover .btn-layer {
  left: 0;
}

form .btn input[type="submit"] {
  height: 100%;
  width: 100%;
  z-index: 2;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}
