 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
      background-color: #ffffff;
      color: #333333;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .login-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex: 1;
      width: 100%;
      padding: 40px 20px 20px;
    }

.webmail-title {
    width: 400px; 
    height: 150px; 
    background-image: url('../img/webmail.png');
    background-size: contain; 
    background-position: center; 
    border: none; 
}

    /* Formulário */
    .login-form {
      width: 100%;
      max-width: 380px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #555555;
      margin-bottom: 6px;
    }

    .input-wrapper {
      display: flex;
      align-items: center;
      border: 1px solid #cccccc;
      border-radius: 4px;
      background: #ffffff;
      overflow: hidden;
      transition: border-color 0.2s ease;
    }

    .input-wrapper:focus-within {
      border-color: #66afe9;
      box-shadow: 0 0 0 2px rgba(102, 175, 233, 0.3);
    }

    .input-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      min-width: 42px;
      height: 42px;
      background: #f5f5f5;
      border-right: 1px solid #cccccc;
      color: #999999;
    }

    .input-icon svg {
      width: 18px;
      height: 18px;
      fill: #999999;
    }

    .input-wrapper input {
      flex: 1;
      border: none;
      outline: none;
      padding: 10px 12px;
      font-size: 14px;
      color: #333333;
      background: transparent;
    }

    .input-wrapper input::placeholder {
      color: #aaaaaa;
    }

    /* Botão Log in */
    .btn-login {
      width: 100%;
      padding: 12px;
      background-color: #179bd7;
      border: none;
      border-radius: 4px;
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.2s ease;
      margin-top: 4px;
    }

    .btn-login:hover {
      background-color: #095779;
    }

    .btn-login:active {
      background-color: #2e829f;
    }

    /* Reset Password */
    .reset-link {
      display: block;
      text-align: center;
      margin-top: 16px;
      color: #333333;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
    }

    .reset-link:hover {
      text-decoration: underline;
    }

    /* Seção de idiomas */
    .languages-section {
      width: 100%;
      text-align: center;
      padding: 30px 20px 20px;
    }

    .languages-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px 16px;
      max-width: 800px;
      margin: 0 auto;
    }

    .languages-list a {
      color: #40a4c8;
      font-size: 13px;
      text-decoration: none;
      white-space: nowrap;
    }

    .languages-list a:hover {
      text-decoration: underline;
    }

    .languages-list .more-langs {
      color: #40a4c8;
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      cursor: pointer;
      line-height: 1;
    }

    .languages-list .more-langs:hover {
      text-decoration: underline;
    }

    /* Footer cPanel */
    .cpanel-footer {
      width: 100%;
      text-align: center;
      padding: 20px;
      border-top: 1px solid #eeeeee;
    }

    .cpanel-logo {
      margin-bottom: 6px;
    }

    .cpanel-logo svg {
      width: 30px;
      height: 30px;
    }

    .cpanel-footer p {
      font-size: 12px;
      color: #999999;
      margin: 2px 0;
    }

    .cpanel-footer a {
      color: #40a4c8;
      text-decoration: none;
      font-size: 12px;
    }

    .cpanel-footer a:hover {
      text-decoration: underline;
    }

    /* Responsivo */
    @media (max-width: 480px) {
      .webmail-title {
        font-size: 44px;
      }

      .login-form {
        max-width: 100%;
        padding: 0 10px;
      }
    }