.elementor-12 .elementor-element.elementor-element-7b40b17{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-cee24ea *//* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Header styles */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, #333, #111);
  padding: 10px 20px;
  color: white;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700;
  font-style: italic;
}

.search-input {
  flex: 1;
  max-width: 200px;
  padding: 8px;
  margin: 0 15px;
  border-radius: 4px;
  border: none;
}

.login-fields {
  display: flex;
  align-items: center;
  gap: 8px;
}

.field-with-icon {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 4px;
  padding-left: 6px;
}

.field-with-icon .icon {
  color: orange;
  font-size: 18px;
  margin-right: 4px;
}

.field-with-icon input {
  border: none;
  padding: 8px;
  outline: none;
}

.login-fields input[type="password"],
.login-fields input[type="text"].validation {
  padding: 8px;
  border-radius: 4px;
  border: none;
}

.validation {
  font-weight: bold;
  width: 60px;
  text-align: center;
}

.login-btn {
  background-color: #c62828;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.signup-btn {
  background-color: transparent;
  color: #00ffff;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    gap: 10px;
  }
  .search-input {
    flex-basis: 100%;
  }
  .login-fields {
    flex-wrap: wrap;
  }
}/* End custom CSS */