﻿	@font-face 
{
	font-family: "Infra";
	src: url("../Fonts/InfraRegular.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      background-color: #ECECEC;
      font-family: "Infra", Arial, Helvetica, sans-serif;
      color: #333;
      text-align: center;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    .logo {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 2;
    }

    .logo img {
      height: 40px;
      width: auto;
    }

    .background-shape {
      position: absolute;
      opacity: 0.7;
      z-index: 0;
      pointer-events: none;
    }

    .shape-blue {
      width: 400px;
      height: 500px;
      background-color: #1D486F;
      border-radius: 50% 10% 100% 10% / 100% 10% 50% 10%;
      top: -100px;
      right: -100px;
      transform: rotate(-250deg);
    }

    .shape-red {
      width: 400px;
      height: 400px;
      background-color: #D72344;
      border-radius: 100% 5% 100% 10% / 40% 10% 70% 5%;
      bottom: -100px;
      left: -100px;
      transform: rotate(-250deg);
    }

    img {
      max-width: 300px;
      width: 100%;
      margin-bottom: 30px;
      z-index: 1;
    }

    h1 {
      font-weight: bold;
      font-size: 24pt;
      color: var(--Brand1);
    }

    p {
      font-size: 12pt;
      margin-top: 20px;
      margin-bottom: 20px;
      line-height: 20pt;
    }

    .highlight {
      display: inline-block;
      padding: 8px 12px;
      border: 2px solid #1D486F;
      border-radius: 10px;
      font-weight: bold;
      margin-bottom: 12px;
      color: #1D486F;
      background-color: transparent;
    }

    .buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
      z-index: 1;
    }

    .buttons a {
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 28px;
      font-weight: bold;
      background-color: #FFDA00;
      color: #000;
      transition: background-color 0.3s, color 0.3s;
      border: none;
    }

    .buttons a:hover {
      background-color: #1D486F;
      color: #fff;
    }

    @media (max-width: 600px) {
      .shape-blue {
        width: 250px;
        height: 300px;
      }

      .shape-red {
        width: 250px;
        height: 250px;
      }

      h1 {
        font-size: 18pt;
      }

      p {
        font-size: 11pt;
      }

      .buttons a {
        padding: 10px 20px;
        font-size: 14px;
      }
    }

    @media screen and (max-width: 900px) and (orientation: landscape) {
      .shape-blue {
        width: 220px;
        height: 270px;
      }

      .shape-red {
        width: 220px;
        height: 220px;
      }
    }

    @media screen and (max-width: 600px) and (orientation: portrait) {
      .shape-blue,
      .shape-red {
        display: none;
      }
    }