@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");

:root {
  --primary-background-color: #131314;
  --primary-container-color: #1e1f20;

  --primary-text-color: #e3e3e3;

  --contentBoxBorderColor: #2b2c2d;
  --contentBoxBorderRadius: 16px;
  --contentBoxPadding: 16px;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
p,
input,
button,
textarea,
select,
label,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--primary-background-color);
}

header {
  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  padding: 0 20px;
  box-sizing: border-box;

  background-color: var(--primary-container-color);
  border-bottom: 1px solid #2b2c2d;
  gap: 10px;
  margin-bottom: 45px;
}

.headerLogo {
  height: 55px;
  width: auto;
}

.headerText {
  font-family: "JetBrains Mono", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #e3e3e3;
}

/* MAIN */

.main {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.contentBox {
  width: 300px;
  height: auto;

  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;

  padding: var(--contentBoxPadding);
  box-sizing: border-box;
  gap: 15px;

  background-color: var(--primary-container-color);
  border-radius: var(--contentBoxBorderRadius);
}

.contentBoxTitle {
  font-family: "JetBrains Mono", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #e3e3e3;
}

.usernameInput {
  height: 35px;
  width: 100%;

  font-family: "JetBrains Mono", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--primary-text-color);

  padding: 10px;
  background-color: var(--primary-container-color);

  outline: none;
  border: 1px solid var(--contentBoxBorderColor);
  border-radius: 8px;

  color: var(--primary-text-color);
}

#submit {
  width: 100%;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 8px;
  background-color: #ffffff;

  cursor: pointer;
  transition: ease-in-out 0.2s;
}

#submit:hover {
  background-color: #d8d8d8;
}

.submitBtnIcon {
  width: 24px;
  height: auto;
}

.mainDataCon {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contentBoxText {
  font-family: "JetBrains Mono", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #e3e3e3;
}
