/* styles.css */
body {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .gradient-text {
    background: linear-gradient(90deg, #5b46c7 0%, #8a7edb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  
  .custom-input:focus {
    outline: none;
    border-color: #5b46c7;
    box-shadow: 0 0 0 3px rgba(91, 70, 199, 0.1);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }
  
  .map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    border-radius: 8px;
  }
  
  .map-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    -webkit-transform: translate(-50%, -50%);
  }