
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b6d3ff;
    font-family: sans-serif;
  }
  a{
    text-decoration: none; 
    color: white;

  }
  .main {
    width: 80%;
    max-width: 1280px;
  }
  .board {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    min-height: 80vh;
  }
  .left img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
  }
  .right {
    padding: 1rem;
  }
  .right h1 {
    margin-bottom: 1rem;
  }
  .right button {
    display: inline-block;
    margin: auto;
    font-size: 15px;
    border: 0px;
    border-radius: 5px;
    text-decoration: none; 
    width: 45%;
    height: 30px;
    color: white;
    background-color: darkcyan;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .right button:hover {
    text-decoration: none; 
    background-color: darkorange;
  }

  /* For mobile */
  @media screen and (min-width: 768px) {
    .login__form {
      display: flex;
      flex-direction: row;
      background-color: #fff;
      border-radius: 20px;
      overflow: hidden;
    }
    .login__form__right {
      padding: 5rem;
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .login__form__img {
      width: 50%;
    }
    .login__form__img img {
      height: 90vh;
      width: 100%;
      display: block;
    }
  }

  table.blueTable {
    border: 1px solid #1C6EA4;
    background-color: #EEEEEE;
    width: 100%;
    max-width: 450px;
    height: 85px;
    text-align: center;
    border-collapse: collapse;
  }
  table.blueTable td, table.blueTable th {
    border: 1px solid #AAAAAA;
    padding: 3px 2px;
  }
  table.blueTable td:nth-child(even) {
    background: #F5F58A;
  }

  table.blueTable tbody td {
    font-size: 15px;
    font-weight: bold;
  }
  table.blueTable tr:nth-child(even) {
    background: #D0E4F5;
  }
  table.blueTable thead {
    background: #1C6EA4;
    background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
    background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
    background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
    border-bottom: 2px solid #444444;
  }
  table.blueTable thead th {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    border-left: 2px solid #D0E4F5;
  }
  table.blueTable thead th:first-child {
    border-left: none;
  }
  
  table.blueTable tfoot td {
    font-size: 14px;
  }
  table.blueTable tfoot .links {
    text-align: right;
  }
  table.blueTable tfoot .links a{
    display: inline-block;
    background: #1C6EA4;
    color: #FFFFFF;
    padding: 2px 8px;
    border-radius: 5px;
  }

