@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    max-height: 100dvh;
    height: 100dvh;
    background: url(../media/img/FirmaBild.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #333;
    /* position: relative; */
}

/* body::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
} */

.wrapper {
    width: 420px;
    background: transparent;
    backdrop-filter: blur(35px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    color: #fff;
    border-radius: 20px;
    padding: 30px 40px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 600px) {
    .wrapper {
        width: 80%;
        background: transparent;
        backdrop-filter: blur(35px);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
        color: #fff;
        border-radius: 20px;
        padding: 30px 40px;
        font-weight: 600;
        position: relative;
        z-index: 1;
    }
}

.wrapper .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: #fff;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
}

.btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.btn:hover {
    background: rgba(83, 73, 73, 0.5);
    color: white;
    border-color: #fff;
}
