@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

input {
    margin: 1em 2em;
}

.data {
    visibility: hidden;
    margin-top: 2%;
    margin-bottom: 3%;
}

body {
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-image: url(./dark-background.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main {
    width: 80%;
    height: 80%;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10% 0;
    text-align: center;
}

.main h1 {
    font-size: 2em;
}

form {
    width: 100%;
    height: 60%;
    margin-top: 8%;
}

section {
    width: 40%;
    padding: 3em 0;
    background-color: #ffffff56;
    border-radius: 10px;
}

.inputDiv {
    width: 70%;
    height: 40px;
    margin: 0 auto;
    background-color: #fff;
    color: black;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 0.5em;
    font-weight: 700;
}

.inputDiv input {
    width: 90%;
    height: 100%;
    border: none;
    outline: none;
    margin-left: 3%;
    background: transparent;
}

.inputDiv i {
    width: 10%;
    margin-right: 2%;
}

.submit {
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
}

#secondForm {
    height: 25%;
}

.userDetails {
    width: 80%;
    font-size: 13px;
    text-align: left;
    margin-left: 8%;
    margin-top: 10%;
}

.userDetails-Span {
    text-decoration: underline;
    margin-left: 5%;
}


/* @media screen */

@media only screen and (max-width : 768px) {
    .main{
        width: 95%;
        height: 79%;
        padding: 2em 0;
        overflow: scroll;
    }
}

@media only screen and (max-width : 425px) {
    section{
        width: 90%;
    }
    .main{
        flex-direction: column;
    }
}

@media only screen and (max-width : 280px){
    section{
        width: 95%;
    }
}