/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


html {
    font-size: 62.5%;
    font-family: "Poppins", sans-serif;
  }
  * {
    box-sizing: border-box;
  }
  body {
    width: 100%;
    min-height: 100vh;
    background-color: #f2f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: url(../images/bg.png) no-repeat center center;
    background-size: cover;
  }
  .signup {
    padding: 90px 75px;
    background-color: #fff;
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    box-shadow: 0px 0px 20px #ededed;
  }
  .signup-heading {
    font-size: 40px;
    font-weight: bold;
    color: #7D24E3;
    text-align: center;
    margin-bottom: 35px;
    text-transform: uppercase;
  }
  .signup-social {
    padding: 10px;
    border-radius: 20px;
    display: block;
    width: 100%;
    color: white;
    font-size: 16px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    border: 0;
    background-color: #4c6ff4;
    display: flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    box-shadow: 0 5px 10px 0 rgba(76, 111, 244, 0.5);
  }
  .signup-social-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4c6ff4;
    font-size: 30px;
  }
  .signup-social-text {
    display: block;
    margin: 0 auto;
  }
  .signup-or {
    text-align: center;
    font-size: 16px;
    color: #999;
    margin: 55px auto;
    position: relative;
  }
  .signup-or span {
    display: inline-block;
    padding: 10px 30px;
    background-color: #fff;
    position: relative;
    z-index: 2;
  }
  .signup-or:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #999;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .signup-label {
    font-size: 16px;
    color: #63676b;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
    cursor: pointer;
  }
  .signup-input {
    display: block;
    width: 100%;
    padding: 25px;
    border-radius: 14px;
    background-color: #f2f3f5;
    outline: none;
    border: 0;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    margin-bottom: 30px;
  }
  .signup-input::-webkit-input-placeholder {
    color: #b4bac0;
    font-weight: 500;
  }
  .signup-input::-moz-input-placeholder {
    color: #b4bac0;
    font-weight: 500;
  }
  .signup-submit {
    padding: 25px;
    color: white;
    font-size: 18px;
    text-align: center;
    border: 0;
    outline: none;
    display: inline-block;
    width: 100%;
    border-radius: 14px;
    background-color: #590ed2;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 5px 10px 0 rgba(124, 30, 201, 0.5);
    margin-top: 25px;
    margin-bottom: 25px;
    transition: .5s linear;
  }

  .signup-submit:hover {
    transform: scale(1.05);
    background: #D20E43;
    box-shadow: 0 5px 10px 0 rgba(201, 30, 44, 0.5);
  }
  .signup-already {
    text-align: center;
    font-size: 16px;
    color: #999;
  }
  .signup-login-link {
    color: #7D24E3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    display: inline-block;
  }

  .signup-login-link:hover{
    transform: scale(1.05);
  }


  @media screen and (max-width: 500px) {
    body {
      width: 100%;
      min-height: 100vh;
      background-color: #f2f3f5;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 0;
      background: url(../images/bg-mb.png) no-repeat center center;
      background-size: cover;
    }
    .signup {
      padding: 40px 20px;
      background-color: #fff;
      width: 100%;
      max-width: 600px;
      border-radius: 30px;
      margin: 0 20px;
    }

    .signup-input {
      display: block;
      width: 100%;
      padding: 15px;
      border-radius: 14px;
      background-color: #f2f3f5;
      outline: none;
      border: 0;
      font-family: "Poppins", sans-serif;
      font-size: 17px;
      margin-bottom: 25px;
  }

    .signup-submit {
      padding: 15px;
    }

    .signup-heading {
      font-size: 35px;
      font-weight: bold;
      color: #7D24E3;
      text-align: center;
      margin-bottom: 30px;
      text-transform: uppercase;
  }

  }