@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #a499f6;
}

.form-container {
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 50px 20px;
    justify-items: center;
}

form {
    display: block;
    margin: auto;
    width: 400px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0.5rem 0.5rem #2a2a2c;
    padding: 50px 35px;
}

form h3 {
    font-size: 3rem;
    text-align: center;
    color: #424242;
}

label {
    display: block;
    margin-top: 2rem;
    font-size: 1rem;
}

input {
    outline: none;
    border: none;
    width: 100%;
    background-color: #f4f3f367;
    border-radius: 4px;
    padding: 15px 10px;
    margin-top: 8px;
    font-weight: 100;
    border: 1px solid rgba(0, 0, 0, 0.2);

}

input::placeholder {
    color: rgb(87, 79, 79);
}

.pass {
    position: relative;
}

.pass i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    right: 20px;
}

#show-hide {
    font-size: 1rem;
}

button {
    margin-top: 30px;
    width: 100%;
    background-color: #ffffff;
    padding: 15px 0;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: all 0.1s;
    border: 2px solid rgba(0, 0, 0, 0.5);
}

button:hover {
    transform: translate(-0.25rem, -0.25rem);
    box-shadow: 0.3rem 0.3rem #2a2a2c;
}

@media screen and (max-width: 462px) {
    form {
        width: 100%;
    }
}