/* reset */
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Source Code Pro', monospace;
}

.form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin-top: 30px;
}

button {
  cursor: pointer;
  transition: all 0.2s ease;
  background: #eb475f;
  border: none;
  border-radius: 30px;
  color: white;
  height: 60px;
  width: 270px;
  font-size: 25px;
  padding: 0 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 60px;
  min-width: 100vw;
  min-height: 100vh;
  width: 100%;
  height: 100%;
  background-color: #5e5e5e;
  background-repeat: no-repeat;
  background-size: cover;
}

img {
  height: 100px;
  width: 180px;
  object-fit: contain;
}
.btn-group {
  overflow: visible;
}

.btn-group-container {
  position: relative;
}

.btn-group::before {
  transition: all 0.25s ease-in;
  content: "Copiado";
  font-size: 16px;
  color: #fff;
  background-color: #56a845;
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 25px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: "Roboto", sans-serif;
}

.btn-group.hidden::before {
  transform: translateX(-50%) translateY(-50px) scale(0.3);
  opacity: 0;
}

.box{
  background-color: #303030;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 450px;
  height: 450px;
}