body {
  background: #3b3b3c;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.container {
  background-color: #414141;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  width: 80%;
  max-width: 800px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.tabs {
  display: flex;
  background-color: #4f4f4f;
}

.tab-btn {
  flex: 1;
  padding: 12px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.tab-btn:hover{
  transform: scale(1.1);
  animation-delay: inherit;

}

.tab-btn.active {
  background-color: #7b7b7b;
}

.form-container {
  font-family: 'Montserrat', sans-serif;
  display: none;
  padding: 40px;
  color: #FFFFFF;
}

.form-container.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overlay-container {
  text-align: center;
  color: white;
}

.overlay-image {
  max-width: 200px;
  margin-bottom: 20px;
}

h1 {
  font-weight: bold;
  margin: 0 0 20px;
}

button {
  border-radius: 20px;
  border: 1px solid #1c1e22;
  background-color: #1c1e22;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  cursor: pointer;
}

button:active {
  transform: scale(0.95);
}

button:focus {
  outline: none;
}

button.ghost {
  background-color: transparent;
  border-color: #FFFFFF;
  margin-top: 20px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 75%;
}

input {
  background-color: #eee;
  border: none;
  border-radius: 10px;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
  box-sizing: border-box;
}