/* 
MAIN COLOR: #6bb745; 
SECONDARY COLOR: rgb(3, 74, 226); 

GREY COLOR: #000000
TEXT COLOR: rgba(10,10,10,0.6);

GRADIENT: linear-gradient(45deg,rgba(107,183,69,0.71) 0%,rgba(3,74,226,0.86) 100%)

*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  font-family: "Titillium Web", sans-serif;
  position: relative;
}

.container {
  min-height: 100vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
 
  flex-wrap: wrap;
}

.left-column {
  text-align: center;
  display: grid;
  justify-items: end;
}

.right-column {
  background-color: #f7f7f7;
  padding: 50px;
  border-radius: 5px;
  box-shadow: 10px 10px 0px 0px #1faee4;
}

.right-column h2 {
  margin-bottom: 20px;
}

label {
  color: rgba(10, 10, 10, 0.6);
}

.right-column label {
  font-size: 20px;
  display: inline-block;
}

.right-column input {
  margin-bottom: 10px;
  border: none;
  border-bottom: 2px solid #0074bc;
  font-size: large;
  padding-left: 5px;
  padding-right: 5px;
  height: 35px;
  display: block;
  width: 100%;
}

.input-error {
  border-bottom: 2px solid #ee1919 !important;
}

input:focus {
  outline: none;
}

button {
  padding: 15px 30px;
  border: none;
  background-color: #0074bc;
  color: white;
  border-radius: 100px;
  font-size: 20px;
  cursor: pointer;
}

.right-column button {
  padding: 15px 30px;
  margin-top: 10px;
  border: none;
  background-color: #0074bc;
  color: white;
  border-radius: 100px;
  cursor: pointer;
  width: 100%;
  font-size: 20px;
}

button:hover {
  background-color: #1faee4;
}

button:active {
  background-color: rgb(107, 183, 69);
}

footer {
  background: #0074bc;
  text-align: center;
  padding: 40px;
}

/* MODAL */

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.767);
  text-align: center;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 40px;
  width: 20%;
  border-radius: 10px;
  color: rgba(10, 10, 10, 0.6);
  font-size: 20px;
  box-shadow: 5px 5px 0px 0px #0074bc;
}

.error-message {
  display: none;
  color: rgb(223, 21, 21);
  margin-top: 10px;
  text-align: center;
}

.copyright {
  color: #fff;
}

.logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

ul {
  list-style: none;
}

.floating-notif {
  position: absolute;
  top: 100px;
  right: 50%;
  padding: 20px;
  color: white;
  border-radius: 10px;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.5s ease-in;
  z-index: 10000;
}

.floating-notif-success {
  background-color: #6bb745;

}

.floating-notif-error {
  background-color: rgb(223, 21, 21);
}


.col-head {
  text-align: center;
}

.loader {
  width: 48px;
  height: 48px;
  border: 3px solid #FFF;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
} 
.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: #FF3D00;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

#importPolygon {
  z-index: 1000;
  right: 65px;
  position: absolute;
  top: 5px;
}

.scooter-controls {
  position: absolute;
  left: 10px;
  z-index: 1005;
  top: 80px;
  /* width: 100%; */
  /* display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; */
}