body {
  margin: 0;
  font-family: 'Rubik', sans-serif;
  background: url('https://i.postimg.cc/kGLZr5Ly/bg.png') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container {
  width: 100%;
  max-width: 300px;
  padding: 20px;
  text-align: center;
}
.logo {
  width: 200px;
  margin: 0 auto 40px;
}
.input {
  width: 75%;
  padding: 14px;
  margin: 10px 0;
  border: 0px solid #000;
  border-radius: 30px;
  background: whitesmoke;
  font-size: 18px;
}
.forgot {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #333;
}
.btn-primary {
  width: 100%;
  padding: 16px;
  border-radius: 30px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
}
.btn-secondary {
  margin-top: 20px;
  font-size: 14px;
  color: #333;
  background: white;
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
}
@media (max-width: 480px) {
  .container {
    padding: 10px;
  }
  .logo {
    width: 160px;
  }
}
.roles {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.role-btn {
  flex: 1;
  padding: 10px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background: #fff;
}
.role-btn.active {
  background: #000;
  color: #fff;
}
