body {
    background-color: #7D4262;
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: #121726;
    height: 55px;
    width: 280px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
}

input {
    width: 230px;
    position: absolute;
    left: 0px;
    font-size: 18px;
    transform: translate(0, -50%);
    top: 50%;
    border: none;
    box-sizing: border-box;
    padding-left: 40px;
    background-color: transparent;
    color: #7D4262;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.8px;
    outline: none;
    z-index: 2;
}

::placeholder {
    color: #7D4262;
}

#lock {
    fill: white;
    position: absolute;
    transform: translate(0, -50%);
    top: 46%;
    left: 8px;
    z-index: 2;
    transition: 0.5s;
}

#eye-wrapper {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
    right: 15px;
    background-color: white;
    transition: 0.5s;
    cursor: pointer;
    z-index: 1;
}

#open,
#close {
    stroke-width: 2px;
    position: absolute;
    top: 0.5px;
}

#open {
    display: none;
}

a {
    color: white;
    font-family: "Rubik", sans-serif;
    position: absolute;
    right: 20px;
    top: 20px;
    border: 2px solid white;
    text-decoration: none;
}

@media screen and (min-width: 451px) {
    a {
        font-size: 22px;
        padding: 8px 12px 8px 12px;
    }
}

@media screen and (max-width: 450px) {
    a {
        font-size: 15px;
        padding: 5px 8px 5px 8px;
    }
}