@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: #191919;
}

.wrapper {
    max-width: 400px;
    /* min-height: 500px; */
    margin: 40px auto 80px auto;
    padding: 40px 30px 30px 30px;
    background-color: #0f0f0f;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #050505, -13px -13px 20px #242222;
}

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

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

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

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

.wrapper .form-field select option{
    color: white;
    background-color: #181818;
}

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

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

.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    background-color: #070707;
    color: #e2e2e2;
    border-radius: 25px;
    box-shadow: 3px 3px 3px #000000, -3px -3px 3px #1b1b1b;
    letter-spacing: 1.3px
}

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

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

.wrapper a:hover {
    color: #039BE5;
}

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