
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body.path-frontpage,
body.path-user {
  margin: 0;
  font-family: 'Inter', sans-serif;
  /*background: #f5f6f7;*/
  background: linear-gradient(135deg, #001E2B 0%, #081428 60%, #4b2c7c 100%);
  color: #1a1a1a;
}
body.user-logged-in {
  background: #f5f6f7 !important;
}
.hiphops-layout {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  /*background: linear-gradient(135deg, #d7d9ff 0%, #c9f2e9 60%, #4b2c7c 100%);*/
}

.hiphops-left {
  flex: 1;
  max-width: 480px;
  padding: 2rem 3rem;
  margin-right: 50px;
}

.hiphops-left h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #00ED64;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.feature h1 {
    font-size: 3rem;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #ccc;
}
.feature .icon {
  font-size: 1.5rem;
  color: #5C3F95;
  margin-top: 0.3rem;
}

.feature h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #00ED64;
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
  color: #fafafa;
  line-height: 1.5;
}

.hiphops-right {
  flex: 1;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.login-box h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.login-box .subtext {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 2rem;
}

form.user-login-form,
form.user-pass {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form.user-login-form input[type="email"],
form.user-login-form input[type="text"], 
form.user-pass input[type="email"],
form.user-pass input[type="text"]{
  padding: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafafa;
}

form input[type="submit"] {
  background-color: #29cc72;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.9rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
  background-color: #21b466;
}
