/* =========================================
   TUZLA OUTDOORS
   SHARE YOUR VIEW
   ========================================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0f0f0f;
  color: #eeeeee;
}


/* =========================================
   PAGE
   ========================================= */

.share-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 20px;
}


/* =========================================
   CARD
   ========================================= */

.share-card {
  width: 100%;
  max-width: 620px;

  background: rgba(30, 30, 30, 0.96);

  border: 1px solid rgba(164, 191, 156, 0.15);

  border-radius: 16px;

  padding: 38px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}


/* =========================================
   BRAND
   ========================================= */

.brand {
  margin-bottom: 28px;
}

.brand-name {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #a4bf9c;
}

.brand-line {
  width: 42px;
  height: 2px;
  margin-top: 9px;
  background: #a4bf9c;
}


/* =========================================
   HEADINGS
   ========================================= */

h1 {
  margin: 0 0 14px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.intro {
  margin: 0 0 32px;
  max-width: 540px;

  font-size: 15px;
  line-height: 1.65;

  color: rgba(255, 255, 255, 0.68);
}


/* =========================================
   FORM
   ========================================= */

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;

  font-size: 13px;
  font-weight: 600;

  color: rgba(255, 255, 255, 0.88);
}

.required {
  color: #a4bf9c;
}


/* =========================================
   INPUTS
   ========================================= */

input[type="text"],
textarea {
  width: 100%;

  padding: 13px 14px;

  border-radius: 8px;

  border: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.045);

  color: white;

  font-family: inherit;
  font-size: 14px;

  outline: none;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

input[type="text"] {
  height: 46px;
}

textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

input[type="text"]:focus,
textarea:focus {
  border-color: rgba(164, 191, 156, 0.65);
  background: rgba(255, 255, 255, 0.07);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}


/* =========================================
   FILE INPUT
   ========================================= */

#photo {
  display: none;
}

.upload-box {
  min-height: 150px;

  display: flex !important;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 7px;

  padding: 25px;

  border: 1px dashed rgba(164, 191, 156, 0.35);

  border-radius: 10px;

  background: rgba(164, 191, 156, 0.045);

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.upload-box:hover {
  background: rgba(164, 191, 156, 0.09);

  border-color: rgba(164, 191, 156, 0.65);
}

.upload-icon {
  font-size: 30px;
  margin-bottom: 3px;
}

.upload-title {
  font-size: 14px;
  font-weight: 600;
  color: #eeeeee;
}

.upload-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}


/* =========================================
   PHOTO PREVIEW
   ========================================= */

.photo-preview {
  margin-top: 12px;
}

.photo-preview img {
  display: block;

  width: 100%;
  max-height: 320px;

  object-fit: cover;

  border-radius: 9px;
}

.photo-name {
  margin-top: 7px;

  font-size: 11px;

  color: rgba(255, 255, 255, 0.45);

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;
}


/* =========================================
   LOCATION
   ========================================= */

.location-box {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 13px 14px;

  border-radius: 8px;

  background: rgba(164, 191, 156, 0.06);

  border: 1px solid rgba(164, 191, 156, 0.12);
}

.location-icon {
  font-size: 20px;
}

.location-box strong {
  display: block;

  font-size: 13px;

  font-weight: 500;
}

.location-box small {
  display: block;

  margin-top: 3px;

  font-size: 11px;

  color: rgba(255, 255, 255, 0.45);
}


/* =========================================
   OPTIONAL NOTE
   ========================================= */

.field-note {
  margin-top: 5px;

  font-size: 11px;

  color: rgba(255, 255, 255, 0.38);
}


/* =========================================
   SUBMIT
   ========================================= */

.submit-button {
  width: 100%;

  height: 48px;

  margin-top: 5px;

  border: none;

  border-radius: 8px;

  background: #a4bf9c;

  color: #111111;

  font-family: inherit;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.5px;

  cursor: pointer;

  transition:
    opacity 0.2s ease,
    transform 0.15s ease;
}

.submit-button:hover {
  opacity: 0.88;
}

.submit-button:active {
  transform: scale(0.99);
}


/* =========================================
   PRIVACY
   ========================================= */

.privacy-note {
  margin: 18px 0 0;

  font-size: 10px;

  line-height: 1.5;

  text-align: center;

  color: rgba(255, 255, 255, 0.32);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

  .share-page {
    padding: 20px 12px;
  }

  .share-card {
    padding: 25px 20px;
    border-radius: 12px;
  }

  h1 {
    font-size: 28px;
  }

  .intro {
    font-size: 14px;
    line-height: 1.6;
  }

  .upload-box {
    min-height: 135px;
  }

}
.share-card .share-logo {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto 28px;
}
.success-logo {
  display: block;

  width: 150px;
  height: auto;

  margin: 0 auto 35px;
}