body {
    background-color: #f6f9ff;
    font-family: 'Segoe UI', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 0;
    padding: 20px;
  }
  
  .logo-mps {
    max-width: 220px;
  }
  
  .titulo-sub {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-top: -8px;
    letter-spacing: 2px;
  }
  
  .access-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    background: #ffffff;
    cursor: pointer;
    height: 100%;
  }
  
  .access-card:hover {
    transform: translateY(-5px);
    background-color: #f0f4ff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }
  
  .access-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
  }
  
  footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #555;
  }
  
  footer img {
    max-height: 20px;
    margin-left: 5px;
  }
  
  a.text-decoration-none {
    text-decoration: none !important;
  }
  