  body {
            font-family: 'Poppins';
            background-color: white;
            margin: 0;
            padding: 0;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            color: #333;
        }
 .terms{
          text-decoration: none;
          background-color: transparent;
          color: grey;
          font-size: 14px;
          text-decoration: underline;
        }
        .terms:hover{
          transition: 0.2s;
          color: blue;
          cursor: pointer;
        }
         .controls{
        position: relative;
        margin-top: 20px;
        width: fit-content;
        margin-left: 10px;
        height: auto;
        background-color: whitesmoke;
        border-radius: 5px;
        display: flex;
        padding: 10px 10px;
      }
      
      .add{
        position: relative;
        width: 200px;
        margin-left: 5px;
        height: 50px;
        border-radius: 5px;
        border: none;
        background-color: rgb(0, 255, 0);
        color: white;
        font-weight: 500;
        font-size: 15px;
        cursor: pointer;
      }
       .cancel{
        position: relative;
        width: 200px;
        height: 50px;
        border-radius: 5px;
        border: none;
        background-color: red;
        color: white;
        font-weight: 500;
        font-size: 15px;
        margin-left: 20px;
        cursor: pointer;
      }
      .coordinates{
        position: relative;
        margin-top: 20px;
        width: calc(100% - 10px);
        height: 50px;
        color: blue;
        font-weight: 500;
        font-size: 14px;
        word-spacing: 10px;
       margin-left: 10px;
      }
      .coordinates input{
        background-color: transparent;
        height: 30px;
        border-radius: 5px;
        border: none;
        color: #444;
        box-shadow: 0px 0px 10px grey;
        text-align: center;
        margin-left: 10px;
      }
         #map {
        height: 400px;
        width: calc(100% - 20px);
        border-radius: 10px;
        margin-top: 20px;
        margin-left: 10px;
      }
      .map_container{
        position: fixed;
        width: 100%;
        height: 100%;
        background-color:rgba(89, 89, 185, 0.84);
        z-index: 101;
        display: none;
      }
      .register-container .logo{
        display: none;
      }
      .txtLoc{
        background-color: transparent;
        margin-top: 10px;
        color: green;
      }
      .map{
        margin-top: 10px;
        margin-left: 5px;
        width: calc(100% - 10px);
        border-radius: 5px;
        background-color: transparent;
        height: 200px;
        display: none;
      }
      h3{
        color: red;
        padding: 20px 10px;
        color: white;
        font-weight: 500;
        font-size: 16px;
        background-color: #2563eb;
        
      }
        .output{
            position: relative;
            width: 100%;
            border-radius: 5px;
            margin-top: 10px;
            height: auto;
            left: 0%;
            background-color: whitesmoke;
            display: none;
        }
        .msg{
            color: red;
            background-color: transparent;
        }
        .register-container {
            background: white;
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.375);
            width: 100%;
            max-width: 30%;
            text-align: center;
            margin-top: 10px;
            position: absolute;
            margin-left: 10px;
            z-index: 100;
            
        }
        .divLogo{
        width: calc(60% - 10px);
        margin-top: 10px;
        position: fixed;
        border-radius: 5px;
        margin-left: 40%;
        height: 700px;
        background-color: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
      }
      .logo{
        border-radius: 10px;
        
      }
        .register-container h1 {
            margin-bottom: 1.5rem;
            color: #1e40af;
        }
        form {
            display: flex;
            flex-direction: column;
        }
        .form-group {
            margin-bottom: 1rem;
            text-align: left;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #374151;
            font-weight: 500;
        }
        input[type="text"],
        input[type="password"],
        input[type="email"],
        select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.25rem;
            font-size: 1rem;
            box-sizing: border-box;
        }
        input[type="text"]:focus,
        input[type="password"]:focus,
        input[type="email"]:focus,
        select:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
        }
        button {
            padding: 0.75rem;
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 0.25rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 1rem;
        }
        button:hover {
            background: #2563eb;
        }
        .login-link {
            margin-top: 1rem;
            font-size: 0.875rem;
        }
        .login-link a {
            color: #3b82f6;
            text-decoration: none;
        }
        .login-link a:hover {
            text-decoration: underline;
        }
      
        @media (max-width: 650px) {
            .register-container {
                padding: 1.5rem;
                width: calc(100% - 70px);
                background-color: transparent;
                max-width: unset;
            }
             .divLogo{
                display: none;
             }
             body{
                margin: 0;
                padding: 0;
             }
             .map_container{
                background-color: rgb(89, 89, 185);
             }
              .register-container .logo{
                    display: block;
                    width: 300px;
                    height: 200px;
                    margin-left: calc(50% - 150px);
                }
        }