* {
    box-sizing: border-box;

}

body {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(0, 0, 33);
}

.container {
    color: rgb(18, 18, 62);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container h1{
    color: rgb(153, 153, 226);
}
.container p{
color: white;
} 

button[type="submit"] {
    background-color:rgb(153, 153, 226);
    color: #fff;
}

button[type="submit"]:hover {
    background-color:rgb(18, 18, 62) ;
}

.custom-navbar {
    background-color: rgb(18, 18, 62) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: white;
  }
  