@import url("https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fdfdfd;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
}

main {
  max-width: 900px;
  margin: auto;
  padding: 0.5rem;
  text-align: center;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul {
  list-style: none;
  display: flex;
}

li {
  margin-right: 1rem;
}

h1 {
  color: #e74c3c;
  margin-bottom: 0.5rem;
}
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 1rem 0;
}
.card {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 15rem auto;
  height: 15rem;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border-radius: 10px;
  margin: auto;
  overflow: hidden;
}

.card--avatar {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

.card--title {
  color: #222;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.card--link {
  text-decoration: none;
  background: #db4938;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section,
.login-section {
  min-height: 100%;
  background: #f2f4f7;
  display: flex;
  font-family: "Roboto", sans-serif;
  justify-content: center;
  align-items: center;
}

.login-form {
  background: #fff;
  width: 450px;
  height: auto;
  padding: 2rem 2.4rem;
  border-radius: 4px;
  padding-top: 0px !important;
  box-shadow: 2px 2px 9px 1px rgba(0, 0, 0, 0.1);
}

.login-header h2 {
  font-weight: 400;
  padding-bottom: 0.4rem;
}
.login-header p {
  color: gray;
  font-weight: normal;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
  margin-top: 20px;
}
.form .input-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.form .input-field input {
  padding: 0.7rem;
  background: #F3F3FF;
  border: 1px solid #eef;
}
.form .input {
  margin: 0.8rem 0;
}
.form .input input[type=checkbox] {
  margin-right: 0.4rem !important;
}

.button {
  padding: 0.7rem;
  border: none;
  border-radius: 4px;
  background: #7366FF;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
}
.button:hover {
  box-shadow: 2px 3px 11px 2px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
}

.option-container {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.7rem;
}
.option-container .option-box {
  padding: 0.6rem 2rem;
  border: 1px solid none;
  border-radius: 4px;
  background: #F3F3FF;
  cursor: pointer;
}
.option-container .option-box button {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  font-weight: bold;
  padding: 0;
}

.form-action span {
  color: gray;
}

.form-text {
  margin-top: 1rem;
}
.form-text p {
  color: gray;
}
.form-text a {
  text-decoration: none;
  color: #7366FF;
}


.mapboxgl-ctrl-bottom-left{
  display: none !important;
}

.mapboxgl-ctrl-bottom-right{
  display: none !important; 
}

.mapbox-logo{ display: none; } 
.mapboxgl-ctrl-logo { display: none !important; } 
.mapbox-improve-map { display: none; } 
.mapboxgl-ctrl-compass { display: none; }




