  .clickable-shadow {
    transition: all 0.3s ease;
    border-radius: 50%;
    padding: 0.5rem;
    cursor: pointer;
  }

  .clickable-square {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
  } 
  
  .clickable-shadow:hover, .clickable-square:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
  }
  
  .clickable-shadow:active {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transform: translateY(0);
  }
  
  /* Icon styling */
  .icon-button {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .google-icon {
    height: 2rem;
    width: auto;
  }
  
  .linkedin-icon {
    height: 2rem;
    width: auto;
    fill: #0A66C2;
  }
  
  /* Form visibility toggle */
  .hidden-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .email-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
#email-login-toggle:checked + form {
  max-height: 200px;
padding-top: 1em;
}
