:root {
    --royal-blue: #106EBE;
    --bright-orange: #FF6F00;
    --light-gray: #1a2f4b;
    --text-color: #333;
  }
  
  * {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    background-color: var(--light-gray);
    margin: 0;
    padding: 0;
    color: var(--text-color);
  }
  
  h2 {
    text-align: center;
    color: var(--royal-blue);
  }
  
  button {
    background-color: var(--bright-orange);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 15px;
  }
  
  button:hover {
    background-color: #e85e00;
  }
  
  .footer {
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
  }
  
  .footer a {
    color: var(--royal-blue);
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  .logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: -20px; 
    margin-top: -20px;   
  }
  .gos-logo {
    width: 135px;
    height: auto;
    object-fit: contain;
  }
  
  .input-error {
    border-color: red;
  }
  
  .error-message {
    color: red;
    font-size: 13px;
    margin-top: 4px;
  }