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

html,
body,
div#root {
  height: 100%;
}

body {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  background-color: #151515;
  -webkit-font-smoothing: antialiased;
  color: white;
  transition: background-color 0.5s;
  overflow-x: hidden;
}

input,
textarea,
button {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
}

#root {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

#root #logo {
  width: 100px;
  height: 100px;
}

#root form {
  display: flex;
  gap: 10px;
}

#root button {
  width: auto;
  padding: 10px;
  border-radius: 25px;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

#root button:disabled {
  cursor: not-allowed;
}

#root button img {
  width: 28px;
  height: 28px;
}
