@import "loaders.css";

html,
body {
  height: 100%;
  margin: 0;
}

main {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#editor {
  display: flex;
  flex-direction: row;
  flex: 1;
  align-content: space-between;
}

#editor-left {
  flex: 0 0 30%;
  min-width: 30%;
}

#editor-right {
  flex: 0 0 70%;
  min-width: 70%;
}

#editor > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#editor-left {
  width: 30%;
}

#editor > div > div {
  flex: 1;
}

.ember-content-editable {
  font-family: "Courier New", Courier, monospace;
  font-size: 1em;
}

/* Login page styles */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f5f5f5;
}

.login-box {
  background: white;
  padding: 2.5rem 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 320px;
}

.login-box h1 {
  margin: 0 0 0.8rem;
  color: #333;
  font-size: 1.8rem;
}

.login-subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.login-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-github {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #24292e;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-github:hover {
  background-color: #1b1f23;
  color: white;
  text-decoration: none;
}

.btn-github i {
  font-size: 1.2rem;
}

.app-brand {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 300;
}

.app-brand strong {
  font-weight: 600;
}
