@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  align-items: center;
  background-repeat: no-repeat;
  background-attachment: fixed !important;
  background-position: center;
  background: #AFAFAF;
  background-image: url("bg.jpg");
  background-size: cover;
  color: rgba(0, 0, 0, 0.8);
  display: grid;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 100vh;
  justify-items: center;
  weight: 100vw;
}

.signup-container {
  display: grid;
  grid-template-areas: "left right";
  max-width: 900px;
}

.left-container {
  background: #fff;
  overflow: hidden;
  padding: 20px 0 0 0;
  position: relative;
  text-align: center;
  width: 0px;
}
.left-container h1 {
  color: #213368;
  display: inline-block;
  font-size: 24px;
}
.left-container h1 i {
  background: #ffffff;
  border-radius: 50%;
  color: #3c7cc9;
  font-size: 24px;
  margin-right: 5px;
  padding: 10px;
  transform: rotate(-45deg);
}
.right-container img {
  width: 40%;
  margin: 0 auto 0 auto;
  display: block;
}

.right-container {
  background: white;
  display: grid;
  grid-template-areas: "." ".";
  width: 800px;
  padding: 30px;
}

.collector-container {
  background: white;
  display: grid;
  grid-template-areas: "." ".";
  width: 100%;
  padding: 3px;
}

.right-container h1:nth-of-type(1) {
  color: #213368;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.right-container .set {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
.right-container input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  height: 38px;
  line-height: 38px;
  padding-left: 5px;
}
.right-container input, .right-container label {
  color: rgba(0, 0, 0, 0.8);
}
.right-container header {
  padding: 40px;
}
.right-container input {
  width: 250px;
}
.right-container .radio-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.right-container footer {
  align-items: center;
  background: #fff;
  display: grid;
  padding: 5px 40px;
}
select {
  font-family: "Nunito", sans-serif;
  Width: 100%;
}
.right-container footer button {
  border: 1px solid rgba(0, 0, 0, 0.2);
  height: 38px;
  line-height: 38px;
  width: 200px;
  border-radius: 19px;
  font-family: "Nunito", sans-serif;
}
.right-container footer #back {
  background: #fff;
  transition: 0.2s all ease-in-out;
}
.right-container footer #back:hover {
  background: #213368;
  color: white;
}
.right-container footer #next {
  background: #fff;
  border: 1px solid transparent;
  color: #fff;
}
.right-container footer #next:hover {
  background: #213368;
}

.name label, .email label, .address label, .number label, .phone label {
  display: block;
  margin-bottom: 5px;
}
input, select, textarea{
    width:260px;    
    -ms-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box;
    -webkit-box-sizing:content-box; 
}

input[type=submit] {
    padding:5px; 
    background-color:#213368; 
    color: #fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  margin: 0 auto;
}