html {
  width: 100%;
  height: 100%;
}

body {
  background: linear-gradient(45deg, rgba(255, 166, 135, 0.84) 0%, rgba(255, 166, 113,0.22) 100%);
  color: rgba(0, 0, 0, 0.6);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.6em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.overlay, .form-panel.one:before {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
}

.form {
  z-index: 15;
  position: relative;
  background: #FFFFFF;
  width: 600px;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin: 100px auto 10px;
  overflow: hidden;
}
.form-toggle {
  z-index: 10;
  position: absolute;
  top: 60px;
  right: 60px;
  background: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  transform-origin: center;
  transform: translate(0, -25%) scale(0);
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-toggle:before, .form-toggle:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 4px;
  background: #4285F4;
  transform: translate(-50%, -50%);
}
.form-toggle:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.form-toggle:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.form-toggle.visible {
  transform: translate(0, -25%) scale(1);
  opacity: 1;
}
.form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 20px;
}
.form-group:last-child {
  margin: 0;
}
.form-group label {
  display: block;
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.two .form-group label {
  color: #FFFFFF;
}
.form-group input {
  outline: none;
  display: block;
	/*background: rgba(0, 0, 0, 0.1);*/
  width: 100%;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 12px 20px;
  color: rgba(0, 0, 0, 0.6);
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  transition: 0.3s ease;
}
.form-group input:focus {
 /* color: rgba(0, 0, 0, 0.8);*/
}
.two .form-group input {
}
.two .form-group input:focus {
}


.form-group select {
  outline: none;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 12px 20px;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  transition: 0.3s ease;
}
.form-group select:focus {
  color: rgba(0, 0, 0, 0.8);
}
.two .form-group select {
  color: #FFFFFF;
}
.two .form-group select:focus {
  color: #FFFFFF;
}

.form-group button {
  outline: none;
  background:#ff661c;
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 12px 20px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  text-transform: uppercase;
  cursor: pointer;
}
.two .form-group button {
  background: #FFFFFF;
  color: #4285F4;
}
.form-group .form-remember {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.form-group .form-remember input[type=checkbox] {
  display: inline-block;
  width: auto;
  margin: 0 10px 0 0;
}
.form-group .form-recovery {
  color: #4285F4;
  font-size: 12px;
  text-decoration: none;
}
.form-panel {
  padding: 60px calc(5% + 60px) 60px 60px;
  box-sizing: border-box;
}
.form-panel.one:before {
  content: "";
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.form-panel.one.hidden:before {
  display: block;
  opacity: 1;
  visibility: visible;
}
.form-panel.two {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 90%;
  background: #4285F4;
  width: 100%;
  min-height: 100%;
  padding: 60px calc(10% + 60px) 60px 60px;
  transition: 0.3s ease;
  cursor: pointer;
}
.form-panel.two:before, .form-panel.two:after {
  content: "";
  display: block;
  position: absolute;
  top: 60px;
  left: 1.5%;
  background: rgba(255, 255, 255, 0.2);
  height: 30px;
  width: 2px;
  transition: 0.3s ease;
}
.form-panel.two:after {
  left: 3%;
}
.form-panel.two:hover {
  left: 93%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.form-panel.two:hover:before, .form-panel.two:hover:after {
  opacity: 0;
}
.form-panel.two.active {
  left: 10%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: default;
}
.form-panel.two.active:before, .form-panel.two.active:after {
  opacity: 0;
}
.form-header {
  margin: 0 0 40px;
}
.form-header h1 {
  padding: 4px 0;
  color: #ff8000;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.two .form-header h1 {
  position: relative;
  z-index: 40;
  color: #FFFFFF;
}
.pen-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 600px;
  margin: 20px auto 100px;
}
.pen-footer a {
  color: #FFFFFF;
  font-size: 12px;
  text-decoration: none;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.pen-footer a .material-icons {
  width: 12px;
  margin: 0 5px;
  vertical-align: middle;
  font-size: 12px;
}

.cp-fab {
  background: #FFFFFF !important;
  color: #4285F4 !important;
}




.boxb { padding:3px 7px; background-color:#6e6e6e;  border:1px solid #6e6e6e;color:#FFF !important; border-radius : 3px 3px; text-decoration:none;}
.boxb1 { padding:3px 7px; background-color:#424242; border:1px solid #424242;color:#FFF !important; text-decoration:none;  border-radius : 3px 3px; }
.boxb1_1 { padding:2px 3px; background-color:#424242; border:1px solid #424242;color:#FFF !important; border-radius : 3px 3px; text-decoration:none;}
.boxb2 { padding:3px 7px; background-color:#a0303e; border:1px solid #a0303e;color:#FFF !important; text-decoration:none;  border-radius : 3px 3px; }
.boxb3 { padding:13px 17px; background-color:#fff; border:1px solid #1e1e1e;color:#1e1e1e !important; border-radius : 3px 3px; text-decoration:none;}
.boxb4 { padding:2px 3px; background-color:#fff; border:1px solid #1e1e1e;color:#1e1e1e !important; border-radius : 3px 3px; text-decoration:none;}
.boxb5 { padding:3px 7px; background-color:#0CA678; border:1px solid #0CA678;color:#FFF !important; text-decoration:none;  border-radius : 3px 3px; }
.boxb6 { padding:3px 7px; background-color:#8080ff; border:1px solid #8080ff;color:#FFF !important; text-decoration:none;  border-radius : 3px 3px; }
.boxb7 { padding:3px 7px; background-color:#009b9b; border:1px solid #009b9b;color:#FFF !important; text-decoration:none;  border-radius : 3px 3px; }
.boxb8 { padding:3px 7px; background-color:#ff8000; border:1px solid #ff8000;color:#FFF !important; text-decoration:none;  border-radius : 3px 3px; }
.boxb9 { padding:3px 7px; background-color:#0080c0; border:1px solid #0080c0;color:#FFF !important; text-decoration:none;  border-radius : 3px 3px; }
.boxb10 { padding:3px 7px; background-color:#0CA678; border:1px solid #0CA678;color:#FFF !important; text-decoration:none;  border-radius : 3px 3px; }
.boxb11 { padding:3px 7px; background-color:#424242; border:1px solid #424242;color:#FFF !important; text-decoration:none;  border-radius : 3px 3px; }
.boxb12 { padding:5px 9px; background-color:#424242; border:1px solid #424242;color:#FFF !important; text-decoration:none;  border-radius : 3px 3px; }
.boxbs { padding:1px 5px; background-color:#8080ff;  border:1px solid #8080ff;color:#FFF !important; border-radius : 3px 3px; text-decoration:none;}
.boxbs1 { padding:1px 3px; background-color:#0CA678;  border:1px solid #0CA678;color:#FFF !important; border-radius : 3px 3px; text-decoration:none;}
.boxbs2 { padding:1px 1px; background-color:#0CA678;  border:1px solid #0CA678;color:#FFF !important; border-radius : 3px 3px; text-decoration:none;}




.form-panel2 {
  padding: 60px calc(5% + 60px) 60px 60px;
  box-sizing: border-box;
}
.form-panel2.one:before {
  content: "";
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.form-panel2.one.hidden:before {
  display: block;
  opacity: 1;
  visibility: visible;
}
.form-panel2.two {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 90%;
  background: #4285F4;
  width: 100%;
  min-height: 100%;
  padding: 60px calc(10% + 60px) 60px 60px;
  transition: 0.3s ease;
  cursor: pointer;
}
.form-panel2.two:before, .form-panel2.two:after {
  content: "";
  display: block;
  position: absolute;
  top: 60px;
  left: 1.5%;
  background: rgba(255, 255, 255, 0.2);
  height: 30px;
  width: 2px;
  transition: 0.3s ease;
}
.form-panel2.two:after {
  left: 3%;
}
.form-panel2.two:hover {
  left: 93%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.form-panel2.two:hover:before, .form-panel2.two:hover:after {
  opacity: 0;
}
.form-panel2.two.active {
  left: 10%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: default;
}
.form-panel2.two.active:before, .form-panel2.two.active:after {
  opacity: 0;
}



/*index2.html*/
.form2 {
  z-index: 15;
  position: relative;
  background: #fff;
  color:#fff;
  width: 600px;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin: 100px auto 10px;
  overflow: hidden;
}
.form2-toggle {
  z-index: 10;
  position: absolute;
  top: 60px;
  right: 60px;
  background: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  transform2-origin: center;
  transform2: translate(0, -25%) scale(0);
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form2-toggle:before, .form2-toggle:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 4px;
  background: #4285F4;
  transform2: translate(-50%, -50%);
}
.form2-toggle:before {
  transform2: translate(-50%, -50%) rotate(45deg);
}
.form2-toggle:after {
  transform2: translate(-50%, -50%) rotate(-45deg);
}
.form2-toggle.visible {
  transform2: translate(0, -25%) scale(1);
  opacity: 1;
}
.form2-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 20px;
}
.form2-group:last-child {
  margin: 0;
}
.form2-group label {
  display: block;
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform2: uppercase;
  letter-spacing: 0.2em;
}
.two .form2-group label {
  color: #FFFFFF;
}
.form2-group input {
  outline: none;
  display: block;
	/*background: rgba(0, 0, 0, 0.1);*/
  width: 100%;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 12px 20px;
  color: rgba(0, 0, 0, 0.6);
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  transition: 0.3s ease;
}
.form2-group input:focus {
 /* color: rgba(0, 0, 0, 0.8);*/
}
.two .form2-group input {
}
.two .form2-group input:focus {
}


.form2-group select {
  outline: none;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 12px 20px;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  transition: 0.3s ease;
}
.form2-group select:focus {
  color: rgba(0, 0, 0, 0.8);
}
.two .form2-group select {
  color: #FFFFFF;
}
.two .form2-group select:focus {
  color: #FFFFFF;
}

.form2-group button {
  outline: none;
  background: #4285F4;
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 12px 20px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  text-transform2: uppercase;
  cursor: pointer;
}
.two .form2-group button {
  background: #FFFFFF;
  color: #4285F4;
}
.form2-group .form2-remember {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform2: none;
}
.form2-group .form2-remember input[type=checkbox] {
  display: inline-block;
  width: auto;
  margin: 0 10px 0 0;
}
.form2-group .form2-recovery {
  color: #4285F4;
  font-size: 12px;
  text-decoration: none;
}
.form2-panel {
  padding: 60px calc(5% + 60px) 60px 60px;
  box-sizing: border-box;
}
.form2-panel.one:before {
  content: "";
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.form2-panel.one.hidden:before {
  display: block;
  opacity: 1;
  visibility: visible;
}
.form2-panel.two {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 90%;
  background: #4285F4;
  width: 100%;
  min-height: 100%;
  padding: 60px calc(10% + 60px) 60px 60px;
  transition: 0.3s ease;
  cursor: pointer;
}
.form2-panel.two:before, .form2-panel.two:after {
  content: "";
  display: block;
  position: absolute;
  top: 60px;
  left: 1.5%;
  background: rgba(255, 255, 255, 0.2);
  height: 30px;
  width: 2px;
  transition: 0.3s ease;
}
.form2-panel.two:after {
  left: 3%;
}
.form2-panel.two:hover {
  left: 93%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.form2-panel.two:hover:before, .form2-panel.two:hover:after {
  opacity: 0;
}
.form2-panel.two.active {
  left: 10%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: default;
}
.form2-panel.two.active:before, .form2-panel.two.active:after {
  opacity: 0;
}
.form2-header {
  margin: 0 0 40px;
}
.form2-header h1 {
  padding: 4px 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform2: uppercase;
}