@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

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

.container{
    width: 150%;
    height: 2100vh;
    background: linear-gradient(to bottom, #00215F, #00599b);
}
.container img{
    width: 200px;
    margin: 0% 0 0 5%;
}
.container .box{
    width: 70%;
    height: 75%;
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
}
.container .box table{
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.container .box table th{
    padding: 15px 5px;
    color: #fff;
    background: #00599b;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #00599b;
}
.container .box table thead tr td{
    border: none;
}
.container .box table thead tr td input{
    width: 98%;
    outline: none;
    border: 0.5px solid #fff;
    padding: 7px 15px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin: 15px 1%;
}
.container .box table tbody td{
    padding: 5px 10px;
    color: #fff;
    border: 0.5px solid #fff;
}
.container .box table tbody tr:hover{
    background: #00599b;
}
.container .box table thead tr td input::placeholder{
    color: #fff;
}
h1{
    text-align: center;
    color: #fff;
}