body.devise-split-layout {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
}
.devise-split-container {
  display: flex;
  min-height: 100vh;
}
.devise-split-left {
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.devise-split-right {
  flex: 1;
  background: #a259e6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.devise-illustrations {
  width: 400px;
  text-align: center;
}
.devise-illustration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.devise-ill {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  object-fit: cover;
  background: #fff;
}
.devise-illustration-desc {
  color: #fff;
  font-size: 18px;
  margin-bottom: 24px;
}
.devise-illustration-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.devise-illustration-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
}
.devise-illustration-dots .dot.active {
  opacity: 1;
  background: #b6f09c;
}
.devise-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.devise-logo img {
  width: 48px;
  height: 48px;
}
.devise-logo-text {
  font-size: 28px;
  font-weight: bold;
  color: #4caf50;
  margin-top: 4px;
}
.devise-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
}
.devise-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 32px;
  text-align: center;
}
.devise-field {
  margin-bottom: 16px;
  width: 320px;
}
.devise-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  background: #f5f1fa;
  font-size: 16px;
}
.devise-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  width: 320px;
}
.devise-remember {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.devise-forgot {
  color: #a259e6;
  text-decoration: none;
  font-size: 16px;
}
.devise-actions {
  width: 320px;
  margin-bottom: 16px;
}
.devise-btn-primary {
  width: 100%;
  padding: 14px 0;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
  transition: background 0.2s;
}
.devise-btn-primary:hover {
  background: #388e3c;
}
.devise-btn-apple {
  width: 100%;
  padding: 14px 0;
  background: #fff;
  color: #000;
  border: 2px solid #222;
  border-radius: 24px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.apple-icon {
  font-size: 22px;
  margin-right: 8px;
}
.devise-divider {
  text-align: center;
  color: #aaa;
  margin: 16px 0;
  font-size: 16px;
}
.devise-signup-link {
  text-align: center;
  color: #aaa;
  font-size: 16px;
}
.devise-signup {
  color: #4caf50;
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
} 