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

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1697048851717-81d7cbee7ed2?q=80&w=1932&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
} 

h2{
    text-align: center;
    margin-bottom: 30px;
}

.container {
    width: 420px;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    border-radius: 5px;
    background-color: transparent;
    padding: 30px 40px;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #6949FF;
    color: #fff;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #4984FE;
}
.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    margin-top: 20px;
    padding: 14px;
    color: #fff;
}

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

.input-box i{
    position: absolute;
    transform: translateY(-50%);
    font-size: 20px;
    margin-top: 44px;
    right: 14%;
}