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

.main{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-evenly;
    margin: 3vh 3vw;
    box-shadow: 0px 0px 30px rgba(133, 131, 131, 0.753);
    height: 5vh;
    padding: 3px;
    border-radius: 25px;

}

nav ul {
    display: flex;
}

nav li {
    font-weight: 500;
    list-style: none;
    padding: 0 2vw;
    cursor: pointer;
}

nav input {
    border-radius: 25px;
    border: 1px solid rgba(128, 128, 128, 0.507);
}

nav input[type="search"] {
    padding-left: 14px;
}

nav a:hover {
    color: orange
}

a{
    text-decoration: none;
    color: black;
}

.active{
    color: rgb(255, 102, 0);
}

.main .page{
    background-color: rgb(255, 102, 0);
    border-radius: 5px;
    height: 80vh;
    width: 35vw;
    text-align: center;
}

.main .page .details{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details input{
    margin-top: 7vh;
    height: 7vh;
    border-radius: 5px;
    border: none;
}

input[type=text],
input[type=email],
input[type=number]{
    padding-left: 5vh;
}

button{
    margin-top: 5vh;
    height: 5vh;
    width: 15vh;
    border: none;
    cursor: pointer;
    font-weight: 700;
    color: rgb(255, 102, 0);
}