/* RESET */
/* 🚫 Disable text selection everywhere */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* 🚫 Remove blue highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  overflow: hidden;
  font-family: 'Segoe UI', serif;
}

/* BACKGROUND */
.background {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("images/Lock-img.jpg") center/cover no-repeat;
  z-index: 0;
}

/* PETALS */
#petal-container {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.petal {
  position: absolute;
  width: 10px;
  height: 10px;
  /*background: #f77791;*/
  background: #ff89a1;
  border-radius: 50% 50% 50% 0;
  opacity: 0;
}

/* DARK LAYER */
#darkLayer {
  position: fixed;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  transition: bottom 1.2s ease;
  z-index: 2;
}

#darkLayer.active {
  bottom: 0;
}

/* UI */
#ui {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 10;
  text-align: center;
}

/* LOGO */
#logo {
  width: 120px;
  cursor: pointer;
}

.tap-hint {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-family: 'Anurati', sans-serif;
}

#message {
  color: rgb(255, 255, 255);
  font-size: 20px;
  opacity: 0.9;
}

.hint {
  margin-top: 10px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  opacity: 0.8;
}

/* PASSWORD */
#passwordArea {
  display: none;
}

/* CANVAS */
#boardWrap {
  width: 420px;
  height: 250px;
  background: #000000;
  border-radius: 10px;
  overflow: hidden;
}

#slashCanvas {
  width: 100%;
  height: 100%;
}

/* BUTTONS */
#btnRow {
  margin-top: 10px;
}

.action-btn {
  padding: 6px 20px;
  margin: 5px;
}

/* MESSAGE */
#message {
  margin-top: 10px;
}

/* 🔥 CLOCK STYLE */
@font-face {
  font-family: 'Anurati';
  src: url('Anurati-Regular.otf');
}

.clockBox {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color:#000000;
  text-shadow:0 0 10px rgb(255, 255, 255);
  z-index: 999;
}

#day {
  font-family: 'Anurati', sans-serif;
  font-size: 85px;
  letter-spacing: 14px;
}

#date {
  font-size: 13px;
  letter-spacing: 4px;
  opacity: 0.7;
  font-weight: bold;
}

#time {
  font-size: 15px;
  letter-spacing: 3px;
  font-weight: bold;
}

/* PASSWORD INPUT FIELD */
#passwordInput {
  margin-top: 15px;
  padding: 10px 15px;
  width: 250px;
  font-size: 18px;
  border-radius: 8px;
  border: none;
  outline: none;
  text-align: center;
  font-family: 'Segoe UI', serif;
}

/* Update hint style for password */
.hint {
  margin-top: 10px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  opacity: 0.9;
}
/* From Uiverse.io by ozgeozkaraa01 */ 
.group {
  display: flex;
  line-height: 30px;
  align-items: center;
  position: relative;
  max-width: 250px;
  margin: 0 auto;
}

.input {
  width: 100%;
  height: 45px;
  line-height: 30px;
  padding-left: 3rem;
  border: 2px solid transparent;
  border-radius: 10px;
  outline: none;
  background-color: #f8fafc;
  color: #0d0c22;
  transition: 0.5s ease;
}

.input::placeholder {
  color: #94a3b8;
}

.input:focus, .input:hover {
  outline: none;
  border-color: rgb(108, 123, 252);
  background-color: #fff;
  box-shadow: 0 0 0 5px rgb(129 140 248 / 30%);
}

.icon {
  display:flex;
  flex-direction:column;
  align-items:center;
  background:none;
  border:none;
  color:white;
  cursor:pointer;
}

.icon-column{
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.icon img{
  width:55px;
  height:55px;
  border-radius:50%;
}

#Btn {
  background-color: #3b82f6; /* blue */
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

#Btn:hover {
  background-color: #2563eb; /* darker blue on hover */
}