/* ===== Global form styling for RightHand Media Customer Area ===== */

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f2f2f2;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.form-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  text-align: center;
}

h2 {
  color: #333;
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

button {
  background: #ff9900;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s;
}

button:hover {
  background: #e48800;
}

.error {
  color: #d9534f;
  font-size: 14px;
  margin-bottom: 10px;
}

.success {
  color: #28a745;
  font-size: 14px;
  margin-bottom: 10px;
}

p {
  margin-top: 10px;
  font-size: 14px;
}

a {
  color: #ff9900;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Make sure it's centered even on tall screens */
html, body {
  height: 100%;
}

/* ===== Branding Header ===== */
.header-brand {
  text-align: center;
  margin-bottom: 20px;
}

.header-brand img {
  max-width: 300px;      /* bigger logo */
  height: auto;
  margin: 0 auto 15px;   /* keeps it perfectly centred */
  display: block;
}
@media (max-width: 600px) {
  .header-brand img {
    max-width: 220px;
  }
}

.header-brand h1 {
  font-size: 20px;
  margin: 0;
  color: #333;
}

.header-brand p {
  font-size: 14px;
  color: #777;
  margin-top: 4px;
}
/* ===== Back to website link ===== */
.back-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

.back-link a {
  color: #ff9900;
  font-weight: 600;
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
  color: #e48800;
}
