* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    max-height: 90%;
    height: auto;
}
@media(max-width: 380px) {
    .wrapper {
        margin: 30px 20px;
        padding: 10px 15px 15px 15px;
    }
}

body {
    background: #ecf0f3;
}

.text-center {
    text-align: center;
    font-size: 35px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}

.wrapper {
    max-width: 350px;
    min-height: auto;
    margin: 30px auto;
    padding: 40px 30px 30px 30px;
    background-color: #f1f6fa;
    border-radius: 15px;
    box-shadow: 13px 13px 18px #a2a4a7, -8px -8px 18px #fff;
}

.logo {
    width: 100px;
    margin: auto;
}

.logo img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 0px 3px #eeecec,
                0px 0px 0px 5px #e6e8e9,
                8px 8px 15px #5b5c5b,
               -11px -11px 10px #fff;
}

.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

input, button {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 18px;
  color: #6C7587;
  padding: 0 8px;
  position: relative;
  border: 3px solid rgba(255, 255, 255, 0);
  outline: none;
  text-align: center;
  background-color: #EBECF0;
  transition: all 250ms ease-in-out;
}
input:hover, button:hover {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.5);
}

button {
  box-shadow: 8px 8px 12px -2px rgba(72, 79, 96, 0.4), -6px -6px 12px -1px white;
  cursor: pointer;
}
button:active {
  box-shadow: inset -4px -4px 6px -1px white, inset 2px 2px 8px -1px rgba(72, 79, 96, 0.5);
  border-color: rgba(255, 255, 255, 0);
}
button > * {
  vertical-align: middle;
}
button > span:last-child {
  padding-left: 8px;
}

.oval-sm, .oval-lg, .oval-lg--with-icon, .oval-xlg {
  height: 54px;
  padding: 0 28px;
  border-radius: 40px;
}

.oval-xlg {
  width: 100%;
}

.oval-lg, .oval-lg--with-icon {
  width: 210px;
}
.oval-lg--with-icon {
  text-align: left;
}

.oval-sm {
  width: 140px;
}

.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: inset 8px 8px 8px #949496, inset -8px -8px 8px #fff;
}

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1.2rem;
    color: #666;
    padding: 10px 15px 10px 10px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #000000;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 10 10 20px 20px #ffffff29;
    border-radius: 100px;
}