html, body {
  padding: 0px;
  margin: 0px;
  background: #222;
  font-family: "Raleway", sans-serif;
  color: #FFF;
  width: 100%;
  height: 100%;
}

body {
  background: linear-gradient(270deg, #2FDCFF 0%, #55E87C 100%);
  background-size: cover;
  border: 1ps solid transparent;
  padding-top: 60px;
}

.container {
  margin: auto;
  max-width: 650px;
  min-height: 400px;
  background: #FFF;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  position: relative;
  border: 1px solid transparent;
}
.container * {
  box-sizing: border-box;
}

.breakup {
  background: linear-gradient(350deg, #5E6DFA 0%, #98A9FF 100%);
  width: 90%;
  margin: -40px 20px 20px 30px;
  border-radius: 30px;
  padding: 20px;
}
.breakup .text {
  font-size: 18px;
  text-align: center;
  line-height: 48px;
}
.breakup .icons {
  margin-top: 10px;
  text-align: center;
}
.breakup .icons .icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin: 0px 10px;
  border-radius: 3px;
  position: relative;
}
.breakup .icons .icon:hover {
  cursor: pointer;
}
.breakup .icons .icon i {
  line-height: 48px;
  pointer-events: none;
}
.breakup .icons .icon .burst {
  background: #FFF;
}

.form {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  padding: 0px 20px 0px 10px;
}
.form .header {
  margin-top: 0px;
  text-align: center;
}
.form button {
  background: transparent;
  padding: 10px 30px;
  border: none;
  overflow: hidden;
  margin: 30px auto;
  display: block;
  width: 200px;
  height: 60px;
  line-height: 40px;
  padding: 0px;
  position: relative;
  color: rgba(0, 0, 0, 0.75);
  border-radius: 30px;
  font-size: 14px;
}
.form .part {
  position: relative;
}

.input-set {
  display: flex;
  height: 40px;
  margin-top: 30px;
}
.input-set .input-part {
  flex: 1;
}
.input-set .input-part.icon {
  flex: none;
  width: 50px;
  text-align: center;
}
.input-set .input-part.icon i {
  line-height: 40px;
}
.input-set .input-part.input input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #333;
  outline: none;
  font-size: 14px;
  font-weight: 200;
  height: 40px;
  position: relative;
}
.input-set .input-part.input input:after {
  /*border-bottom: 2px solid #F42;*/
  content: " ";
  width: 100px;
  height: 10px;
  /*background: red;*/
  position: absolute;
  bottom: 0px;
  z-index: 1;
}

.burst {
  background: #F42;
}