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

body {
  height: 100vh;
  background-color: #101014;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  touch-action: manipulation;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/** Login Form **/

.card {
  width: 450px;
  height: 600px;
  padding: 2rem;
  background-color: #202024;
  margin: 2rem;
  border-radius: 4px;
}

.card-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 2.2rem;
  padding: 1rem 0px;
}

.card-title {
  font-size: 20px;
  color: #FAFAFA;
  font-weight: 600;
}

#separator {
  width: 1px;
  height: 24px;
  background-color: #404044;
  margin-right: 10px;
}

.card-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#brand {
  width: 40px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: ease 200ms;
  cursor: pointer;
}

.brand-title {
  font-family: 'CHEDROS', sans-serif;
  color: #FAFAFA;
  font-size: 28px;
  margin-top: 5px;
  letter-spacing: 1.5px;                             
}

/* LOGIN FORM */

.login-box {
  width: 100%;
  text-align: center;
}

.input-group {
  margin-bottom: 20px;
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 16px 14px;
  border: 1px solid #28282c;
  border-radius: 4px;
  background-color: transparent;
  font-size: 14px;
  transition: border-color 0.3s ease;
  color: #EAEAEA;
}

.input-group input:hover {
  border-color: #404044;
}

.input-group input:focus {
  border-color: #EAEAEA;
  outline: none;
}

.btn {
  width: 100%;
  padding: 16px 14px;
  background-color: #3A03A3;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #4e1bc5;
}

.forgot {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  padding: 0px 0px 1rem;
}

#forgot {
  color: #8F8F96;
  font-size: 14px;
  cursor: pointer;
}

#line {
  width: 100%;
  height: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0px;
  background-color: #404044;
}

#line > p {
  color: #FAFAFA;
  font-size: 12px;
  background-color: #202024;
  padding: 0px 12px;
  font-weight: 600;
}

.methods {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m-btn {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0px;
  background-color: white;
  border-radius: 0.5rem;
}

.m-btn > img {
  width: 32px;
}