body{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    background-repeat: no-repeat;
    height:100vh;
    width: 100vw;
}

.container{
    display:flex;
    justify-content: center;
    align-items: center;
    height:100%;
}

.container.bg-image{
    background-image: url("/assets/images/Vector.jpg");
    background-repeat: repeat-y;
    width:100%;
    margin-left:10px;
}

a{
    text-decoration: none;
    color: white;
    font-size: medium;
}

.menu-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:20px;
    padding-bottom: 100px;
    padding-right:50px;
    /* align-items: center; */
}

input{
    width:200px;
    background-color: lightgrey;
    padding:10px;
    height:30px;
    border: none;
    border-radius: 10px;
}

button{
    background-color: red;
    border:none;
    color: white;
    width: 100px;
    font-size: medium;
    margin:auto;
    padding:10px 20px;
    border-radius: 10px;
}
