@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;900&display=swap');

body {
    height: 100vh;
     display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Nunito Sans', sans-serif;
     -webkit-background-size: cover;
     -moz-background-size: cover;
     -o-background-size: cover;
     background-size: cover;
     background:#00a892;
     background-repeat:no-repeat;
     background-image: -webkit-gradient(linear, left top, left bottom, from(#00353b), to(#00a892));
     background-image: -webkit-linear-gradient(top, #00353b, #00a892);
     background-image: -moz-linear-gradient(top, #00353b, #00a892);
     background-image: -ms-linear-gradient(top, #00353b, #00a892);
     background-image: -o-linear-gradient(top, #00353b, #00a892);
     background-image: linear-gradient(top, #00353b, #00a892);
     filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr='#00353b', end-colourStr='#00a892');
    
}

.container {
    width: 350px;
    height: 650px;
    background-color: #fefdf9;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0px 20px 50px 0px rgba(0,0,0,0.2);
}

.fa {
    color: white;
}

.fa-arrow-circle-left {
    font-size: 2.5em;
}

span.note {
    font-weight: 600;
    font-size: 2em;
    color: #fefdf9;
}

input[type="text"], [type="email"], [type="password"] {
    outline: none;
    height: 40px;
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    color: #fefdf9;
}

::placeholder {
    color: rgb(254, 253, 249,0.6);
}

div button.signup {
    width: 100px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(to top right, #232529, #7f8084);
}
 
span.alredy{
  font-size: 0.8em;
  font-weight: bold;
  
}
span.big {
    font-weight: 900;
    font-size: 1.2em;
    color: #fefdf9;
}

span.underline {
    text-decoration: underline;
    font-weight: 900;
    font-size: 0.8em;
    
}
 a.signin{
     text-decoration: none;
   color: #fefdf9;
 }