@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Lora:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Lora', serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f0f4f8, #d9e1e8);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  box-sizing: border-box;
}

.header {
  background-color: #8B0000;
  color: #fff;
  text-align: center;
  justify-content: center;
  padding: 2% 0;
  position: sticky;
  align-items: center;
}


.header h1 {
  font-size: 200%;
  margin: 0;
}

.container {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  padding: 2% 4%;
}

.middle {
  flex: 3;
}

.side {
  order: 1;
  flex: 0 0 100%;
}


@media screen and (min-width: 768px) {
  .side {
    order: 1;
    flex: 0 0 100%;
  }



}

#filterSelect {
  width: 100%;
  max-width: 300px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 20px;
  background-color: #8B0000;
  color: #fff;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-self: center;
  transition: all 0.3s ease;
}

#filterSelect:hover {
  border-color: #a52a2a;
}

#filterSelect:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  background-color: #c62828;
}


.morelinks {
  display: flex;
  background-color: #8B0000;
  color: #fff;
  width: 100%;
  padding: 50px;
  border-radius: 8px;
  font-size: 18px;
  margin: 10px;
  justify-content: center;
  transition: background-color 0.3s;
  max-width: 80%;
  justify-self: center;
  align-self: center;
}

.morelinks:hover {
  background-color: #6B0000;
}


.intro {
  background-image: url('/images/intro.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 10% 0;

}

.intro-content {
  max-width: 60%;
  margin: 0 auto;
}

.intro h2 {
  font-size: 250%;
  margin-bottom: 4%;
}

.intro p {
  font-size: 150%;
  margin-bottom: 8%;
}

.share-button {
  display: inline-block;
  background-color: #8B0000;
  color: #fff;
  padding: 5% 10%;
  border-radius: 5px;
  text-decoration: none;
  font-size: 100%;
  cursor: pointer;
}

.share-button:hover {
  background-color: #6B0000;
}

.reviews {
  margin-top: 10%;
}

.review-card {
  background-color: #fff;
  border-radius: 10%;
  box-shadow: 0 1% 2% rgba(0, 0, 0, 0.1);
  padding: 3% 4%;
  margin-bottom: 3%;
}

.review-card h3 {
  font-size: 100%;
  margin: 0;
}

.review-score {
  font-size: 90%;
}

.review-text {
  font-size: 80%;
}

.review-author {
  font-style: italic;
  font-size: 70%;
}

.review-date {
  margin-top: 0.5%;
  font-size: 50%;
}

.hidden {
  display: none;
}

.upload-button {
  display: inline-block;
  color: #ffffff;
  background-color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
}

.upload-button:hover {
  background-color: #6B0000;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.form-container:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.form-container h1 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
  color: #8B0000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-container a {
  display: flex;
  justify-content: center;
  color: #8B0000;
  margin-bottom: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.form-container a:hover {
  color: #6B0000;
}

.form-container p {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 20px;
  color: #8B0000;
  font-weight: normal;
}

.form-container form {
  display: flex;
  flex-direction: column;
}

.form-container label {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #333;
  font-weight: bold;
}

.form-container input[type="text"],
.form-container textarea {
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-container input[type="text"]:focus,
.form-container textarea:focus {
  border: 1px solid #8B0000;
  outline: none;
}

.form-container textarea {
  resize: vertical;
}

.form-container button[type="submit"] {
  background-color: #8B0000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  align-self: center;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-container button[type="submit"]:hover {
  background-color: #6B0000;
  transform: scale(1.05);
}

.form-container button[type="submit"]:focus {
  outline: none;
}

.form-container button[type="submit"]:before {
  content: "\f14a";
  font-family: FontAwesome;
  margin-right: 8px;
}

.form-container button[type="submit"]:hover:before {
  content: "\f004";
}

.reviews-container {
  margin: 0 auto;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 30px;
  justify-items: center;
  background-color: #f4f4f4;
  border-radius: 12px;
}

.reviews {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.review-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease-in-out;
  width: 100%;
  margin: 10px;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.reviewss {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.review-image {
  width: 100%;
  max-height: 180px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  flex-grow: 1;
}

.reviews p {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin: 20px 0;
}

.reviews h2 {
  font-size: 2rem;
  color: #8B0000;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}



.search-form {
  text-align: center;
  margin-top: 2%;
}

.search-form input[type="text"] {
  padding: 10px;
  border-radius: 5px;
  background-color: white;
}

button[type="submit"] {
  background-color: #8B0000;
  color: white;
  padding: 10px;
  border: black;
}

.account-info {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  justify-content: center;
}

.account-info h2 {
  margin-top: 0;
  font-size: 24px;
  color: #333;
}

.account-info p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}

.aBtn {
  display: inline-block;
  margin: 0.5rem;
  background-color: #8B0000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(244, 67, 54, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.aBtn:hover {
  background-color: #7a0000;
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
}

.aBtn:active {
  background-color: #6a0000;
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(198, 40, 40, 0.5);
}


.settings-container form label {
  display: block;
  font-weight: bold;
}

.settings-container form input[type="text"],
.settings-container form input[type="email"],
.settings-container form input[type="checkbox"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.settings-container form input[type="checkbox"] {
  margin-top: 5px;
}

.settings-container form button[type="submit"],
.settings-container form button[type="button"] {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.settings-container form button[type="submit"]:hover,
.settings-container form button[type="button"]:hover {
  background-color: #444;
}

.settings-container form #errorText {
  color: red;
  font-size: 14px;
}

.your-reviews {
  margin: 40px auto;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.your-review-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  min-width: 90%;
  width: 90%;
  margin: 20px 0;
  overflow: hidden;
}

.your-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.reviewss {
  text-align: center;
  margin-bottom: 15px;
}

.your-review-image {
  height: auto;
  margin-bottom: 15px;
  max-height: 180px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.your-review-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.your-reviews p {
  text-align: center;
  font-size: 18px;
  margin: 20px 0;
  color: #666;
}

.your-reviews h2 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  color: #333;
}

a {
  text-decoration: none;
  color: #000;
}


a:hover {
  text-decoration: underline;
  color: #555;
}


.column.side {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.column.side h2 {
  color: #333;
  font-size: 175%;
  margin-bottom: 10px;
}


.column.side p {
  font-size: 110%;
  margin-bottom: 20px;
}


.column.side ul {
  font-size: 110%;
  list-style-type: disc;
  padding-left: 20px;
}


.column.side li {
  margin-bottom: 8px;
}


.column.side li:hover {
  color: #0066cc;

}


.column.side {
  border: 1px solid #ddd;
}

.reviewBtn {
  background-color: #d32f2f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
  display: none;
}

.reviewBtn.selected {
  background-color: #fff;
  color: #d32f2f;
  border: 2px solid #d32f2f;
  display: none;
}

.button-container {
  display: flex;
  justify-content: center;

}

.button-container {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.donate-button {
  display: inline-block;
  background-color: #8B0000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.donate-button:hover {
  background-color: #6B0000;
}


.terms {
  max-width: auto;
  margin-top: 20px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  

}




@media screen and (min-width: 600px) {
  .reviews-container {
    display: inline-block;
  }


}


#uploadChoiceForm {
  margin-bottom: 20px;
}

#uploadChoiceForm input[type="radio"] {
  display: none;
}

#uploadChoiceForm label {
  display: inline-block;
  cursor: pointer;
  padding: 8px 15px;
  background-color: #f2f2f2;
  color: #333;
  border-radius: 5px;
  margin-right: 10px;
}

#uploadChoiceForm label:hover {
  background-color: #e0e0e0;
}

#uploadChoiceForm input[type="radio"]:checked+label {
  background-color: #6B0000;
  color: #fff;
}


input[type="file"] {
  display: block;
  margin-top: 5px;
}

input[type="file"] {
  border: 1px solid #ccc;
  padding: 6px 12px;
  cursor: pointer;
  background-color: #6B0000;
}

input[type="file"]:hover {
  background-color: #f0f0f0;
}

input[type="file"]:focus {
  outline: none;
}


input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
  color: white
}

label.file-upload-label {
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  display: inline-block;
}

label.file-upload-label:hover {
  background-color: #0056b3;
}

.cheese-image {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounceIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}


.fade-in {
  animation: fadeIn 1.5s ease-in;
}


.slide-in {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}


.slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

.bounce-in {
  animation: bounceIn 1.5s ease;
}

.search-container {
  display: flex;
  align-items: center;
}

.search-index {
  border: 5px solid #8B0000;
  border-radius: 15px;
  width: 100%;
  height: 50px;
  margin: 5px;
}

.search-index-small {
  border: 5px solid #8B0000;
  border-radius: 15px;
  width: 75%;
  height: 50px;
  margin: 5px;
}

button.search-index-small {
  width: 75px
}

button.search-index {
  width: 100px;
}

::placeholder {
  font-family: 'Calibri', sans-serif;
  font-size: 16px;
  color: #888;
  opacity: 1;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.cheese-image {
  width: 65%;
  display: block;
  margin: 0 auto;
}

.cheese {
  display: block;
  margin: 0 auto;

}

.container {
  display: flex;
  justify-content: center;
  align-self: center;
  align-items: flex-start;

}

.cheese-choice {
  max-width: 800px;
  text-align: center;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 600px;
}

#username {
  text-transform: lowercase;
}

.centered {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.goToUpload {
  position: fixed;
  bottom: 11%;
  right: 5%;
  color: #ffffff;
  background-color: #8B0000;
  padding: 10px 20px;
  border-radius: 10%;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 1000;
  text-decoration: none;
}

.goToUpload:hover {
  background-color: #6B0000;
}

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vh;
  width: 100%;
  box-sizing: border-box;
}

.form-container {
  width: 80%;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#reviewsContainer {
  position: relative;
  padding-bottom: 2000px
}

.width80 {
  padding: 4%;
}

@media screen and (max-width: 600px) {
  .search-index {
    border: 5px solid #8B0000;
    border-radius: 15px;
    width: 150%;
    height: 50px;
    margin: 5px;
  }

  .search-index-small {
    border: 5px solid #8B0000;
    border-radius: 10px;
    width: 20%;
    height: 50px;
    margin: 5px;
  }

  button.search-index-small {
    display: none;
  }

  button.search-index {
    display: none;
  }



  .header {
    background-color: #8B0000;
    color: #fff;
    text-align: center;
    padding: 2% 0;

    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .search-index {
    border: 5px solid #8B0000;
    border-radius: 15px;
    width: 150%;
    height: 50px;
    margin: 5px;
  }

  .search-index-small {
    border: 5px solid #8B0000;
    border-radius: 10px;
    width: 50%;
    height: 50px;
    margin: 5px;
  }

  button.search-index-small {
    width: 75px
  }

  button.search-index {
    width: 100px;
  }

  .width80 {
    padding: 0%;
    max-width: 100%;
    width: 100%;
  }

  .intro-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
    background-size: 100%;
  }

  .intro {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  .column {
    padding: 0%;
  }



}

.discord-cta {
  margin-top: 20px;
  text-align: center;
}

.discord-button {
  display: inline-block;
  background-color: #5865F2;
  color: #ffffff;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.discord-button i {
  margin-right: 8px;
}

.discord-button:hover {
  background-color: #4752C4;
}

.server-status-container {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.server-box {
  flex: 1;
  padding: 1rem;
  background-color: #ffffff;
  color: #000;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.status {
  font-weight: bold;
  color: gray;
}

.online {
  color: green;
}

.offline {
  color: red;
}

.r3eintro {
  background-image: url('/images/r3eintro.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 10% 0;

}

.r3eintro-content {
  max-width: 60%;
  margin: 0 auto;
}

.r3eintro h2 {
  font-size: 250%;
  margin-bottom: 4%;
}

.r3eintro p {
  font-size: 150%;
  margin-bottom: 8%;
}

.mcintro {
  background-image: url('/images/mcintro.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 10% 0;

}

.mcintro-content {
  max-width: 60%;
  margin: 0 auto;
}

.mcintro h2 {
  font-size: 250%;
  margin-bottom: 4%;
}

.mcintro p {
  font-size: 150%;
  margin-bottom: 8%;
}

.server-promo {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-direction: column;
  align-items: center;
}

.promo-card {
  background: #ffffff;
  padding: 1.5rem;
  border: 2px solid #b22222;
  /* Firebrick */
  border-radius: 12px;
  flex: 1 1 45%;
  box-shadow: 0 0 12px rgba(178, 34, 34, 0.4);
  color: #000000;
  transition: transform 0.3s ease;
  width: 92%;
}

.promo-card:hover {
  transform: scale(1.03);
}

.promo-card h2 {
  color: #b22222;
  /* Firebrick */
  margin-bottom: 0.5rem;
}

.promo-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.promo-card .aBtn {
  background-color: #b22222;
  color: #ffffff;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.promo-card .aBtn:hover {
  background-color: #a31e1e;
}

.reviewss {
    
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  max-width: 90%;
  box-shadow: 0 1% 2% rgba(0, 0, 0, 0.1);
  margin-bottom: 3%;
  justify-content: center;
  margin: 5%;
  padding: 20px;
  border-radius: 10px;
  }

  .reviewss .post {
  
      margin-bottom: 20px;
  }

  .reviewss h1 {
      font-size: 24px;
      margin-bottom: 10px;
      color: black;
  }

  .reviewss p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 20px;
      color: black;
  }

  .reviewss img {
      max-width: 100%;
      height: auto;
      margin-bottom: 20px;
  }

  .reviewss .comment-section {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }

  .reviewss .comment-section form {
      margin-bottom: 20px;
  }

  .reviewss .comment-section textarea {
      height: 100%;
      width: 100%;
      padding: 10px;
      font-size: 16px;
      border: 1px solid #6B0000;
      border-radius: 5px;
      margin-bottom: 10px;
  }

  .reviewss .comment-section button {
      background-color: #6B0000;
      color: #fff;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 5px;
      font-size: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .reviewss .comment-section button:hover {
      background-color: #8B0000;
  }

  /* BACKGROUND */
.cv-auth-body {
  margin: 0;
  font-family: 'Lora', serif;
  background: linear-gradient(135deg, #8B0000, #3b0000);
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* subtle overlay */
.cv-auth-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, rgba(255,255,255,0.1), transparent 60%);
}

/* CARD */
.cv-auth-container {
  z-index: 2;
}

.cv-auth-card {
  background: #fff;
  padding: 40px;
  width: 340px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
  animation: pop 0.5s ease;
}

@keyframes pop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* TEXT */
.cv-auth-card h1 {
  margin-bottom: 5px;
  color: #8B0000;
}

.cv-subtext {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* FORM */
.cv-auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cv-input-group {
  text-align: left;
}

.cv-input-group label {
  font-size: 12px;
  color: #444;
}

.cv-input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.2s;
}

.cv-input-group input:focus {
  border-color: #8B0000;
  box-shadow: 0 0 5px rgba(139,0,0,0.3);
}

/* BUTTON */
.cv-btn {
  margin-top: 10px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #8B0000;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.cv-btn:hover {
  background: #5a0000;
  transform: scale(1.03);
}

/* bottom text */
.cv-bottom-text {
  margin-top: 15px;
  font-size: 13px;
}

.cv-bottom-text a {
  color: #8B0000;
  font-weight: bold;
  text-decoration: none;
}

/* split layout voor signup */
.cv-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* checkbox styling */
.cv-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #444;
  text-align: left;
}

/* terms text */
.cv-terms {
  font-size: 11px;
  color: #666;
  margin-top: 5px;
}

.cv-terms a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

/* error */
.cv-error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

/* signup card iets breder */
.cv-signup {
  width: 380px;
}

/* SETTINGS LAYOUT */
.cv-settings-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  flex-wrap: wrap;
}

/* INFO LIST */
.cv-info-list p {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.cv-info-list span {
  color: #777;
}

.cv-info-list b {
  color: #8B0000;
}

/* BUTTONS */
.cv-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.cv-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #8B0000;
  color: white;
  transition: 0.2s;
}

.cv-actions button:hover {
  background: #5a0000;
  transform: scale(1.03);
}

/* secondary button */
.cv-btn-secondary {
  background: #333 !important;
}

/* CARD reuse */
.cv-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 380px;
}

