body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    backdrop-filter: blur(10px);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255,0.5);
    padding: 20px;
    width: 100%;
    max-width: 400px;
    margin: 20px;
    text-align: center;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    background-position: center;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.3);
}

.logo {
    width: 100px;
    margin-top: 20px;
}

h1 {
    color: #fff;
}

h4 {
    color: #fff;
}

p {
    font-size: 14px;
    color: #ffffff;
}

.inputfield {
    position: relative;
    width: 90%;
    height: 50px;
    border-bottom: 2px solid #cacaca;
    margin: 30px auto;
}

.inputfield label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1em;
    color: #aaaaaa;
    font-weight: 500;
    pointer-events: none;
    transition: .5s;
}

.inputfield input:focus~label,
.inputfield input:valid~label {
    top: -5px;
}

.input {
    width: 90%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #aaaaaa;
    font-weight: 600;
    padding: 0 0px 0 5px;
}

.inputfield .icon {
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    color: #aaaaaa;
    line-height: 57px;
}

.btn {
    width: calc(100% - 16px);
    padding: 10px;
    border: none;
    border-radius: 2px;
    color: #929292;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    box-sizing: border-box;
}

.btn:hover {
    background-color: #222222a6;
    backdrop-filter: blur(5px);
    color: #fff;
}

.form p{
    font-size: 110x;
}

.form a {
    text-decoration: none;
    color: #eeeeee;
}

.form a:hover{
    color: #aaaaaa;
}

@media (max-width: 400px) {
    .container {
        margin: 10px;
        padding: 15px;
    }

    .logo {
        width: 80px;
    }

    p {
        font-size: 18px;
    }

    .input {
        width: calc(100% - 12px);
        font-size: 12px;
    }

    .btn {
        width: calc(100% - 12px); 
        font-size: 12px;
        padding: 8px;
    }
}