/* -------------------------------------------------------------- */
/* -------------------- SIGNUP AND LOGIN CSS -------------------- */
/* -------------------------------------------------------------- */

/* Wrapper */
.cus-reg-wrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

/* Clean Title - Left aligned */
.cus-reg-title {
  font-size: 60px;
  font-weight: 700;
  text-align: left;
  color: #c92d2d; /* deep red */
  margin-bottom: 40px;
  line-height: 1.2;
  margin-left: 2px; /* slightly aligns with form input */
}

.cus-reg-title span {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: #444; /* soft gray, looks modern */
  margin-top: 4px;
  margin-left: 0px;
}

/* Form Field Groups */
.cus-form-group {
  margin-bottom: 18px;
}

/* Labels */
.cus-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: medium;
  font-size: 14px;
}

/* Inputs, Select, Textarea */
.cus-form-group input,
.cus-form-group select,
.cus-form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: #fafafa;
}

/* Submit Button */
.cus-reg-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to bottom, #c92d2d, #8b1e1e);
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.cus-reg-btn:hover {
  background: #8b1e1e;
}

/* -------------------------------------------------------------- */
/* -------------------- PROFILE SETTINGS CSS -------------------- */
/* -------------------------------------------------------------- */
/* Hero Section */
.cus-profile-hero {
  height: 180px;
  background: linear-gradient(to right, #c92d2d, #8b1e1e);
  position: relative;
}

.cus-profile-hero-inner {
  position: absolute;
  bottom: -60px; /* center avatar at bottom of hero */
  width: 100%;
  display: flex;
  justify-content: center;
}

.cus-profile-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
}

/* Adjust wrapper margin for hero */
.cus-reg-wrapper {
  max-width: 600px;
  margin: 100px auto 40px auto; /* top margin accounts for hero avatar */
  padding: 0 20px;
}
