h1, h2, a, p{
  font-family: 'Times New Roman', Times, serif;
}

body{
  margin: 0px;
}

h1 {
      margin-left: 10px;
    }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
    }

/* Eto code ng topbar/header */

    

/* Eto code ng topbar/header */

/* Eto code ng footer */

.footNav{
  margin: 0px;
  width: 100%;
  background: linear-gradient(to right, rgb(31, 62, 156), rgb(53, 95, 219));
  margin-top: 30px;
}
.footNav ul{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.footNav a{
  text-decoration: none;
  color: white;
  display: block;
  padding: 10px;
  text-align: center;
}
.footNav a:hover{
  text-decoration: underline;
  background-color: rgb(78, 113, 219);
}
.footText{
  color: white;
  text-align: center;
  margin-top: 10px;
}
.registerFooter{
  margin-top: 100px;
}

/* Eto code ng footer */

    .company {
      color: white;
      font-weight: bolder;
      margin-left: 10px;
      margin-right: 10px;
      font-size: 17px;
      padding: 0px;
    }
    .separator {
      color: white;
      font-weight: bold;
    }
    #homeBanner{
        width: 100%;
        height: 30vh;
        object-fit: contain;
        object-position: center 5%;
        background-color: white;
    }
    #serviceBanner{
        width: 100%;
        height: 30vh;
        object-fit: cover;
        object-position: center 20%;
        background-color: white;
    }
    .topBarIcon{
        height: 30px;
        width: 30px;
        margin-top: 10px;
        margin-right: 10px;
        margin-left: 20px;
    }
    .mainBox{
        flex: 1;
        margin: 0px;
        display: block;
        width: auto;
        text-align: center;
        object-position: center;
    }
    .flexBox{
        display: flex;
        width: 80%;
        margin: 15px auto;
        background-color: rgb(255, 255, 255);
        border-radius: 10px;
        padding: 20px;
        flex-wrap: wrap;
    }
    .displayImage{
        width: 150px;
        height: 150px;
        aspect-ratio: 1;
        object-fit: cover;
        padding: 20px;
        border-radius: 15%;
    }
    .textContent{
        margin-left: 20px;
        display: block;
        margin-top: 20px;
        width: 80%;
        text-align: left;
    }
    .textContentNoImage{
        text-align: left;
        display: block;
        margin-top: 20px;
    }
    .textHeadline{
        font-size: 35px;
        font-weight: bolder;
    }
    .textDescription{
        margin-top: 20px;
        font-size: 21px;
        text-indent: 30px;
    }
    .textDescriptionNoImage{
        margin-top: 20px;
        font-size: 21px;
        text-indent: 30px;
        align-items: center;
    }
    p{
        margin-top: 0em;
        margin-bottom: 0em;
    }
    .hyperLinks{
      text-decoration: none;
      color: black;
    }
    .hyperLinks:hover{
      text-decoration: underline;
      color: rgb(0, 81, 255);
      font-weight: bold;
    }
    .functionButton{
      margin-top: 20px;
      margin-left: 10px;
      padding: 5px;
      background-color: royalblue;
      color: white;
      height: 30px;
    }
    .functionButton:hover{
      background-color: rgb(128, 152, 226);
      cursor: pointer;
    }
    .functionButton2{
      margin-top: 20px;
      margin-left: 10px;
      padding: 5px;
      background-color: rgb(255, 0, 0);
      color: white;
      height: 30px;
    }
    .functionButton2:hover{
      background-color: rgb(251, 88, 88);
      cursor: pointer;
    }
.formBox {
  width: 300px;
  padding: 20px;
  border-radius: 10px;
  background-color: #007bff;
  color: white;
  margin: 80px auto 40px auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.formBox form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.formBox input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}
#login:hover{
  cursor: pointer;
  background-color: rgb(196, 196, 196);
}
.formLink{
  color: white;
  font-weight: bolder;
  text-decoration: none;
}
.authPage {
  min-height: 100vh;
  background: linear-gradient(135deg, rgb(31, 62, 156), rgb(53, 95, 219));
  font-family: Arial, Helvetica, sans-serif;
}

.authPage p,
.authPage a,
.authPage label,
.authPage input,
.authPage button {
  font-family: Arial, Helvetica, sans-serif;
}

.authMainBox {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 8vh, 76px) 16px 44px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
}

.authMainBox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/wallpaper/1.jpg') center / cover no-repeat;
  opacity: 0.72;
  transform: scale(1.02);
  z-index: -2;
}

.registerAuthPage .authMainBox::before {
  background-image: url('/img/wallpaper/2.jpg'), url('img/wallpaper/2.jpg');
}

.authMainBox::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 22, 55, 0.34), rgba(31, 62, 156, 0.2)),
    rgba(255, 255, 255, 0.18);
  z-index: -1;
}

.authPage .formBox,
.authFormBox {
  width: min(92vw, 390px);
  margin: 0 auto;
  padding: 30px 30px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #172033;
  box-shadow: 0 18px 42px rgba(10, 22, 55, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.authPage .formBox.authFormBoxWide {
  width: min(94vw, 460px);
}

.authPage .textHeadline {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.1;
  color: #102050;
}

.authPage .formBox form {
  width: 100%;
  align-items: stretch;
  gap: 0;
}

.authPage .formBox label {
  display: block;
  margin: 10px 0 6px;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  color: #26344f;
}

.authPage .formBox input[type="text"],
.authPage .formBox input[type="email"],
.authPage .formBox input[type="password"] {
  width: 100%;
  height: 44px;
  margin: 0 0 8px;
  padding: 10px 12px;
  border: 1px solid #cfd7e6;
  border-radius: 8px;
  background: #fff;
  color: #172033;
  box-sizing: border-box;
  font-size: 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.authPage .formBox input[type="text"]:focus,
.authPage .formBox input[type="email"]:focus,
.authPage .formBox input[type="password"]:focus {
  outline: none;
  border-color: rgb(53, 95, 219);
  box-shadow: 0 0 0 3px rgba(53, 95, 219, 0.18);
}

.authPage .formText {
  margin: 12px 0;
  color: #4b5875;
  font-size: 16px;
  line-height: 1.35;
}

.authPage .formLink {
  color: rgb(31, 62, 156);
  font-weight: bold;
  text-decoration: none;
}

.authPage .formLink:hover {
  text-decoration: underline;
}

.authPage .formBox .authButton,
.authPage input[type="submit"].authButton,
.authPage #submit,
.authPage #login,
.authPage .functionButton.authButton,
.authPage .functionButton2.authButton {
  width: 100%;
  min-height: 46px;
  margin: 10px 0 0;
  padding: 0 16px;
  border: none;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.authPage .formBox .authButton,
.authPage input[type="submit"].authButton,
.authPage #submit,
.authPage #login,
.authPage .functionButton.authButton {
  background: linear-gradient(to right, rgb(31, 62, 156), rgb(53, 95, 219));
  color: #fff;
}

.authPage .formBox .authButton:hover,
.authPage input[type="submit"].authButton:hover,
.authPage #submit:hover,
.authPage #login:hover,
.authPage .functionButton.authButton:hover {
  background: linear-gradient(to right, rgb(24, 50, 129), rgb(42, 79, 197));
}

.authPage .functionButton2.authButton {
  background: #eef2f8;
  color: #24324a;
}

.authPage .functionButton2.authButton:hover {
  background: #dfe6f1;
}

.authPage .otpNotice {
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 14px;
  font-size: 15px;
}

.authPage .otpTimer {
  color: #102050;
}

.authPage .otpInlineNote {
  color: #4b5875;
  font-size: 15px;
}

.authPage .registerFooter {
  margin-top: 0;
}

@media screen and (max-width: 480px) {
  .authMainBox {
    min-height: calc(100vh - 60px);
    padding: clamp(24px, 6vh, 44px) 12px 34px;
  }

  .authPage .formBox,
  .authFormBox,
  .authPage .formBox.authFormBoxWide {
    width: min(94vw, 390px);
    padding: 24px 20px;
  }

  .authPage .textHeadline {
    font-size: 26px;
  }
}
.actionTile{
  height: 250px;
  width: 300px;
  background-color: blue;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  margin: 5px;
}
.actionTile:hover{
  background-color: rgb(78, 113, 219);
}
.actionTileButton{
  text-decoration: none;
}
.actionTileContent{
  color: white;
  font-size: 24px;
}

.settingsWrap {
            width: 90%;
            margin: 30px auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: stretch;
        }

        .settingsCard {
            background: white;
            width: 100%;
            box-sizing: border-box;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
            text-align: left;
        }

        .settingsCard h2 {
            margin-top: 0;
            margin-bottom: 15px;
        }

        .settingsCard label {
            display: block;
            margin-top: 10px;
            margin-bottom: 5px;
            font-family: 'Times New Roman', Times, serif;
            font-size: 18px;
        }

        .settingsCard input {
            width: 100%;
            box-sizing: border-box;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 6px;
            margin-bottom: 10px;
            font-family: 'Times New Roman', Times, serif;
            font-size: 18px;
        }

        .settingsCard form {
            width: 100%;
        }

        .avatarWrap {
            text-align: center;
            margin-bottom: 15px;
        }

        .avatarPreview {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 18px;
            border: 2px solid #ddd;
            display: inline-block;
            background: #f4f4f4;
        }

        .cropBox {
            margin-top: 12px;
            display: none;
        }

        .cropFrame {
            width: 100%;
            max-width: 100%;
            max-height: 360px;
            overflow: hidden;
            background: #f7f7f7;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .cropFrame img {
            display: block;
            max-width: 100%;
        }

        .cropTools {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .messageBox {
            width: 92%;
            margin: 15px auto -65px auto;
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 18px;
            box-sizing: border-box;
        }

        .messageSuccess {
            background: #e9f7ec;
            color: #19692c;
            border: 1px solid #b7e1c1;
        }

        .messageError {
            background: #fdecec;
            color: #9f1c1c;
            border: 1px solid #f5b5b5;
        }

        .functionButton {
            width: 100%;
            border: none;
            border-radius: 6px;
        }

        .buttonRow {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .buttonRow .functionButton {
            width: auto;
            flex: 1 1 120px;
        }
.profile_picture{
  height: 30px;
  width: 30px;
  margin-top: 10px;
  margin-right: 10px;
  margin-left: 20px;
  border-radius: 50%;
}
/* QR file tiles page */
.qrFilesPage {
  max-width: 980px;
  margin: 90px auto 30px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.qrFilesHeader {
  margin-bottom: 18px;
  text-align: left;
}

.qrFilesHeader h2 {
  margin: 0 0 8px 0;
  font-size: 30px;
}

.qrFilesMeta {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.qrFilesEmpty {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  font-size: 18px;
}

.qrFilesList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qrFileCard {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, #f7fbff 0%, #eef4ff 100%);
  border: 1px solid rgba(53, 95, 219, 0.18);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.qrFileCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.qrFileCardTop {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.qrFileIcon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: linear-gradient(to right, rgb(31, 62, 156), rgb(53, 95, 219));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(31, 62, 156, 0.25);
}

.qrFileIcon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.qrFileTitleWrap {
  min-width: 0;
  text-align: left;
}

.qrFileTitle {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #102050;
  word-break: break-word;
}

.qrFileSubtitle {
  margin-top: 4px;
  font-size: 16px;
  color: #4a587e;
  word-break: break-word;
}

.qrFileInfo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  text-align: left;
}

.qrInfoBlock {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 32, 80, 0.08);
}

.qrInfoLabel {
  display: block;
  font-size: 14px;
  color: #5c6785;
  margin-bottom: 4px;
}

.qrInfoValue {
  display: block;
  font-size: 18px;
  color: #111827;
  word-break: break-word;
}

.qrFileActions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.qrDownloadBtn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(to right, rgb(31, 62, 156), rgb(53, 95, 219));
  color: white;
  font-size: 16px;
}

.qrDownloadBtn:hover {
  text-decoration: underline;
}

.qrBadge {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(53, 95, 219, 0.12);
  color: rgb(31, 62, 156);
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .qrFilesPage {
    margin-top: 80px;
    padding: 0 12px;
  }

  .qrFilesHeader h2 {
    font-size: 24px;
  }

  .qrFilesMeta,
  .qrFilesEmpty {
    font-size: 16px;
  }

  .qrFileCard {
    padding: 14px;
    border-radius: 16px;
  }

  .qrFileIcon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .qrFileTitle {
    font-size: 20px;
  }

  .qrFileSubtitle {
    font-size: 15px;
  }

  .qrInfoValue {
    font-size: 16px;
  }

  .qrDownloadBtn {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .qrFilesPage {
    margin-top: 74px;
    padding: 0 10px;
  }

  .qrFileCardTop {
    gap: 10px;
  }

  .qrFileIcon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 10px;
  }

  .qrFileTitle {
    font-size: 18px;
  }

  .qrInfoBlock {
    padding: 10px 12px;
  }

  .qrInfoLabel {
    font-size: 13px;
  }

  .qrInfoValue {
    font-size: 15px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined&display=block');

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  display: inline-block;
  vertical-align: middle;
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

.qrStatusWrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.qrStatusVerified {
  color: #1f7a35;
}

.qrStatusUnverified {
  color: #b42318;
}

.qrStatusUnknown {
  color: #6b7280;
}

.qrStatusIcon {
  font-size: 22px;
  flex: 0 0 auto;
}

@media screen and (max-width: 480px) {
  .material-symbols-outlined {
    font-size: 20px;
  }
}
/* OTP modal for login */
.otpOverlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
}

.otpOverlay.show {
  display: flex;
}

.otpModal {
  width: min(94vw, 440px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  padding: 22px;
  text-align: left;
}

.otpModalTitle {
  margin: 0 0 10px 0;
  font-size: 26px;
  font-weight: bold;
}

.otpModalText {
  margin: 0 0 14px 0;
  font-size: 18px;
  line-height: 1.35;
}

.otpTimer {
  margin: 0 0 14px 0;
  font-size: 18px;
  font-weight: bold;
  color: #1f3f9b;
}

.otpTimer.expired {
  color: #b42318;
}

.otpModal input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  margin: 8px 0 14px 0;
  border: 1px solid #cfd6e4;
  border-radius: 8px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
}

.otpActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.otpBtn {
  flex: 1 1 140px;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  background: royalblue;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.otpBtn:hover {
  background: rgb(78, 113, 219);
}

.otpBtnSecondary {
  flex: 1 1 140px;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  background: #6b7280;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.otpBtnSecondary:hover {
  background: #5b6472;
}

.otpNotice {
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 18px;
}

.otpNoticeSuccess {
  background: #e9f7ec;
  color: #19692c;
  border: 1px solid #b7e1c1;
}

.otpNoticeError {
  background: #fdecec;
  color: #9f1c1c;
  border: 1px solid #f5b5b5;
}

.otpSmallNote {
  margin-top: 10px;
  font-size: 15px;
  color: #5b6472;
}

@media screen and (max-width: 480px) {
  .otpModal {
    padding: 18px;
    border-radius: 16px;
  }

  .otpModalTitle {
    font-size: 22px;
  }

  .otpModalText,
  .otpTimer,
  .otpNotice,
  .otpModal input[type="text"] {
    font-size: 16px;
  }
}
