@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif
}


body {
    background: #ecf0f3;
    
}
#app {
    display: flex;
    min-height: 90vh;
}

.wrapper {
    max-width: 450px;
    min-height: 500px;
    margin:  auto;
    padding: 70px;
    background-color: #ecf0f3;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

/* .wrapper .head { */
  
.name{
text-align: center;
}

.logo {
    width: 80px;
    margin: auto;
    border-spacing: 10px;
}

.logo img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 0px 3px #5f5f5f, 0px 0px 0px 5px #ecf0f3, 8px 8px 15px #a7aaa7, -8px -8px 15px #fff
}

.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    padding: 10px;
    color: #555
}

.wrapper .form-field input {
    border: none;
    background: none;
    box-shadow: 0px 0px 0px 0px #2F353A;
    width: 100%;
    color: black;
    font-size: 1em;
    outline: none;
    border-radius: none;
    
}
.wrapper .form-field  {
    border: none;
    background: none;
    box-shadow: 0px 2px 0px 0px #2F353A;
    width: 100%;
    color: black;
    font-size: 1em;
    outline: none;
    border-radius: none;
    
}


input[type="email" ]:focus {
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

element.style {
}
.wrapper .form-field input {
    border: none;
    background: none;
    box-shadow: 0px 0px 0px 0px #2f353a;
    width: 100%;
    color: black;
    font-size: 1em;
    outline: none;
    border-radius: none;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
button, input {
    overflow: visible;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
*, :after, :before {
    box-sizing: border-box;
}

.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
   
}

.wrapper .form-field .fas {
    color: #555
}

.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    background-color: #2F353A;
    color: #fff;
    border-radius: 25px;
    box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
    letter-spacing: 1.3px
}
.btn-success{
 border-color: #2F353A;
 background-color: #2F353A;
}

.btn-success:hover .btn-success:active .btn-success:focus{
    border-color: #2F353A;
    background-color: #2F353A;
}
   


.wrapper .btn:hover {
    background-color: #8A5541;
}

.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #2F353A;
}

.wrapper a:hover {
    color: #8A5541;
}

@media(max-width: 380px) {
    .wrapper {
        margin: 180px 20px;
        padding: 40px 15px 15px 15px
    }
}