.elementor-8 .elementor-element.elementor-element-5a356da{--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-8 .elementor-element.elementor-element-909fab3{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-8 .elementor-element.elementor-element-909fab3:not(.elementor-motion-effects-element-type-background), .elementor-8 .elementor-element.elementor-element-909fab3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #303030 0%, #131313 100%);}.elementor-8 .elementor-element.elementor-element-9ab3227{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-8 .elementor-element.elementor-element-86c328f .elementor-heading-title{font-family:"Roboto", Sans-serif;font-weight:600;color:#FFD700;}.elementor-8 .elementor-element.elementor-element-590388a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-8 .elementor-element.elementor-element-a53d0fd .elementor-button{background-color:#C62828;font-family:"Lato", Sans-serif;font-weight:600;}.elementor-8 .elementor-element.elementor-element-9c3aacb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8 .elementor-element.elementor-element-e40f97e .elementor-button{background-color:#C62828;font-family:"Lato", Sans-serif;font-weight:600;}.elementor-8 .elementor-element.elementor-element-c9e33f0{--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;}@media(max-width:767px){.elementor-8 .elementor-element.elementor-element-9ab3227{--width:33.33%;}.elementor-8 .elementor-element.elementor-element-86c328f .elementor-heading-title{font-size:27px;}.elementor-8 .elementor-element.elementor-element-590388a{--width:33.33%;}.elementor-8 .elementor-element.elementor-element-9c3aacb{--width:33.33%;}}@media(min-width:768px){.elementor-8 .elementor-element.elementor-element-9ab3227{--width:25%;}.elementor-8 .elementor-element.elementor-element-590388a{--width:50%;}.elementor-8 .elementor-element.elementor-element-9c3aacb{--width:25%;}}/* Start custom CSS for html, class: .elementor-element-812a85b *//* 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 */