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

/* Page styles */
body {
  font-family: 'Montserrat', var(--font-montserrat), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #131313;
  /* Remove global padding that bleeds into app */
  padding: 0;
  background-color: white;
  line-height: 1.5;
}

/* Header */
.oneononoe {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Main heading */
.welcome-back {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Login instructions */
p {
  margin-bottom: 20px;
}

/* Form layout */
.login-form {
  max-width: 320px;
}

/* Form fields - scoped to login forms only */
.login-form .form-group {
  margin-bottom: 15px;
}

.login-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #BCBEC0;
  border-radius: 3px;
  font-family: inherit;
}

/* Remember me checkbox */
.login-form .remember-me {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.login-form .remember-me input {
  margin-right: 8px;
}

/* Submit button - scoped to login forms only */
.login-form button {
  background-color: #131313;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  font-family: inherit;
}

.login-form button:hover {
  opacity: 0.9;
}

/* Tool section */
.meeting-tool {
  margin-top: 40px;
}

.meeting-tool h2 {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 10px;
}

.meeting-tool p {
  max-width: 80%;
} 