  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body{
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
  }

  .wrapper{
   display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    flex-direction: row;
    background: linear-gradient(rgba(85, 106, 190, 0.8), rgba(0, 0, 0, 0.9));
  }
  
  .container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 100vh;
    flex-direction: column;
  }

    .container h3{
        font-size: 2.5rem;
        font-weight: 100;
        margin-bottom: 20px;
        color : #fff;
    }   

    .form {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        width: 100%;
        margin-bottom: 40px;
    }

    .container input{
        width: 80%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1.2rem;
    }

    .container button{
        padding: 10px;
        margin-left: 10px;
        border-radius: 50%;
        border: none;
        background: #333;
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
    }   


#map {
    width: 100%;
    height: 500px;
    border-radius: 20px;
  }

  p {
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
  }

.success{
    border-radius: 20px;
    background-color: white;
    padding: 10px 15px;
    color: green;
    font-size: 1.2rem;
    margin-bottom: 20px;
}   

.alert{
    border-radius: 20px;
    background-color: white;
    padding: 10px 15px;
    color: red;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

  