/* General Styles */
body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #d0cccc, #f7f7f7, #d0cccc, #f7f7f7, #d0cccc);
  display: flex;
  align-items: flex-start; /* Moves content higher */
  justify-content: center;
  min-height: 100vh;
  padding-top: 20px; /* Reduced top padding */
}



#securityLogin {
  position: relative;
}

/* Glassmorphism Form */
.form-signin {
  z-index: 99;
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 25px;
  margin-top: 20px; /* Reduce margin */
  background: rgba(255, 255, 255, 1); /* Light glass effect */
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Softer shadow */
  opacity: 1;
  text-align: center;
}

.form-signin h1 {
  color: #000;
  font-size: 24px;
  margin-bottom: 15px;
}

/* Input Fields */
input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  color: #374151;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease-in-out;
}

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

input:focus {
  background: rgba(255, 255, 255, 1);
}

/* Password Toggle Button */
button#togglePassword {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

button#togglePassword:hover {
  background: rgba(255, 255, 255, 0.9);
}


#togglePassword {
  z-index: 10;
  touch-action: manipulation;
  font-size: 0.8rem;
  padding: 4px 8px;
}

/* Submit Button */
button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #000, #000, #000);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

button:hover {
  background: linear-gradient(45deg, #222222, #424242, #222222);
  color: white;
}

.buttonNoBackground {
  background-color: white !important;
}

/* Background Shapes */
.background {
  width: 500px;
  height: 500px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 45%; /* Moves shapes higher */
  z-index: 1;
}

.background .shape {
  height: 220px;
  width: 220px;
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.4;
}

/* Shape Colors */
.shape:first-child {
  background: linear-gradient(135deg, #b3e5fc, #81d4fa); /* Soft cyan */
  left: -90px;
  top: -90px;
}

.shape:last-child {
  background: linear-gradient(135deg, #d1c4e9, #b39ddb); /* Soft lavender */
  right: -40px;
  bottom: 80px;
}

/* Checkbox and Label Alignment */
.checkbox {
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  gap: 8px; /* Space between checkbox and label */
  margin-top: 10px; /* Optional: Adjust space between form fields */
}

.checkbox input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.checkbox label {
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}
