@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);

html {
    height:100%;
    background-image: linear-gradient(to right top, #ffffff 0%, #8dbee8 100%);
}
body {
    background: inherit;
}
nav {
    max-width: 960px;
    mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 25%, #ffffff 75%, rgba(255, 255, 255, 0) 100%);
    margin: 0 auto;
    padding: 0 0;
    background: inherit;
}

nav ul {
    text-align: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    padding: 18px;
    font-family: "Open Sans";
    text-transform:uppercase;
    color: rgba(0, 35, 122, 0.5);
    font-size: 18px;
    text-decoration: none;
    display: block;
    font-weight: normal;
}

nav ul li a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(0, 35, 122, 0.7);
}

h1 {
    font-family: "Open Sans";
    text-transform:uppercase;
    color: rgba(0, 35, 122, 0.5);
    font-size: 22px;
    text-decoration: none;
    display: block;
    ;
}
th {
    font-family: "Open Sans";
    background-color: #ffffffa0!important;
    text-transform:uppercase;
    color: rgba(0, 35, 122, 0.5);
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}
td {
    font-family: "Open Sans";
    text-transform:inherit;
    color: rgba(86, 86, 86, 0.5);
    font-size: 17px;
    font-weight: normal;
    text-decoration: none;
}

a {
    font-family: "Open Sans";
    text-transform:uppercase;
    color: rgba(21, 85, 236, 0.5);
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}

.btn {
    font-family: "Open Sans";
    text-transform:uppercase;
    border: 1px solid #cecece;
    background-color: #1555ec14;
    color: #2e4050;
    font-size: 15px;
    font-weight: bold;
}

table, form {
    background-color: #ffffff40;
    border: 1px solid #cecece;
    border-collapse: collapse; /* Ensures no space between borders */
    width: 100%; /* Optional: Set width of the table */
    border-radius: 15px; /* Rounds the corners of the table */
    overflow: hidden; /* Ensures the corners stay rounded */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
}

form {
    padding: 15px;
}
form label {
    font-family: "Open Sans";
    text-transform:uppercase;
    color: rgba(0, 35, 122, 0.5);
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}