
*{box-sizing:border-box;font-family:Inter,Segoe UI,Roboto,Arial}
body{margin:0;background:#f4f7fb;color:#111}
.brand { color: #000000; font-size: 1.5rem; font-weight: bold; }
.navbar{display:flex;justify-content:space-between;align-items:center;padding:12px 20px;background:linear-gradient(90deg,#0ea5a4,#06b6d4);color:#fff}
.nav-links a{color:#fff;margin-left:12px;text-decoration:none;font-weight:600}
.container{max-width:900px;margin:24px auto;padding:16px}
.auth-card{max-width:420px;margin:40px auto;padding:20px;background:#fff;border-radius:10px;box-shadow:0 6px 18px rgba(16,24,40,.06)}
.card{background:#fff;padding:16px;border-radius:10px;box-shadow:0 6px 18px rgba(16,24,40,.04);margin-bottom:16px}
.gallery{display:flex;flex-wrap:wrap;gap:12px}
.photo-card{background:#fff;padding:8px;border-radius:8px;box-shadow:0 3px 10px rgba(2,6,23,.04)}
.photo-card img{max-width:220px;border-radius:6px}
input,textarea{width:100%;padding:8px;margin-top:6px;border:1px solid #e6eef6;border-radius:6px}
button{background:#3cb371;border:none;color:#fff;padding:8px 12px;border-radius:8px;cursor:pointer}
label {
  display: block;           /* puts label on its own line */
  font-weight: bold;        /* make text bold */
  font-size: 16px;          /* readable size */
  color: #333;              /* dark gray text */
  margin-bottom: 6px;       /* space below label */
}
    .modal-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.75); /* darker backdrop */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }


    /* Modal content */
    .modal {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 25px 35px;
      border-radius: 12px;
      width: 320px;
      text-align: center;
      color: #fff;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    .message {
      color: #ffcb05;
      margin-top: 10px;
      font-size: 0.9rem;
    }

    .success {
      color: #2ecc71;
    }

    .error {
     color: #340000;
    font-size: 100%;
    font-weight: bold;
    }


