* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    background-image: url(./images/bgwallpaper.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

form>div {
    padding: 10px 20px;
}


main {
    background-color: transparent;
    color: white;
    width: 40%;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    margin: 40px 0px;
}

div>span {
    position: relative;
}

span>input {
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: 2px solid #3f3f33;
    width: 100%;
}

select {
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    outline: none;
    border: 2px solid #3f3f33;
}

span>i {
    position: absolute;
    top: 0%;
    bottom: 0%;
    right: 10px;
    display: flex;
    align-self: center;
    color: black;
}

button {
    padding: 10px 20px;
    margin: 10px;
    border-radius: 20px;
    outline: none;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
}

@media screen and (max-width:764px) {
    main {
        width: 90%;
    }
}