* {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

body {
  /*display: flex;*/
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #222;
  position: relative;
  min-height: 100vh;
}

.modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  width: 475px;
  padding: 1.3rem;
  min-height: 250px;
  position: absolute;
  top: 20%;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 15px;
  box-sizing: border-box;
}

.modal .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal input {
  padding: 0.7rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.9em;
}

.modal p {
  font-size: 0.9rem;
  color: #777;
  margin: 0.4rem 0 0.2rem;
}

button {
  cursor: pointer;
  border: none;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  background-color: blue;
  color: white;
  border-radius: 5px;
  text-align: center;
  font-size: 1em;
  width: 100px;
  height: 40px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.btn:hover {
	background-color:#f8f8ff;
	color:blue;
	transition: 0.7s;
 }
 
 
.btn-open {
  position: absolute;
  bottom: 150px;
}


.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1;
}

.hidden {
  display: none;
}

.row {
	padding-left: 50%;
}