/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    /*background: #ecf0f3;*/
    background: #1e1e1e;
}

.wrapper {
    max-width: 415px;
    width: 100%;
    min-height: 350px;
    margin: 80px auto;
    padding: 60px 30px 30px 30px;
    background-color: #212121;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #252525, -13px -13px 20px #181818;
}


.logo {
    width: 100px;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-image {
    max-width: 100%;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0px 0px 3px #111111, 0px 0px 0px 5px #ffffff, 8px 8px 15px #4f4f4f, -8px -8px 15px #4f4f4f;
}

.overlap-image {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Ensure it is above other elements */
    width: 90%; /* Adjust as needed */
}


.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #d1d1d1;
}

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1.2rem;
    color: #dddddd;
    padding: 10px 15px 10px 10px;
    /* border: 1px solid red; */
}

.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: inset 8px 8px 8px #161616, inset -8px -8px 8px #292929;
}

    .wrapper .form-field .fas {
        color: #555;
    }

.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    background-color: #00a4ea;
    color: #fff;
    border-radius: 25px;
    box-shadow: 3px 3px 3px #2d2d2d, -3px -3px 3px #0000004d;
    letter-spacing: 1.3px;
}

    .wrapper .btn:hover {
        background-color: #039BE5;
    }

.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;
    }
}
