/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #4a4a4a;
}

/* Container */
.container {
  text-align: center;
  /* padding: 20px; */
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #713d92;
  color: white;
  padding: 10px 20px;
  
}

/* Group Image and Text */
.title-group {
  display: flex;
  align-items: center;
  gap: 10px; /* Adjust the space between the image and text */
}

/* Style for the Image */
.header-logo {
  width: 30px; /* Adjust image size */
  height: auto;
}

/* Header Text */
.header h1 {
  margin: 0;
  font-size: 18px;
}

/* Back Arrow and Dropdown */
.back-arrow, .dropdown {
  font-size: 20px;
  cursor: pointer;
}

/* Logo Section */
.logo-section {
  margin: 40px 0;
}

.logo-circle {
  width: 100px;
  height: 100px;
  /* background-color: #ffcc00; */
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
  color: white;
}

.logo-section h2 {
  margin-top: 30px;
  color: #f9b44c;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 50px 30px;
}

.grid-item {
  text-align: center;
}

.grid-item img {
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.grid-item p {
  margin-top: 10px;
  /* font-size: 14px; */
  font-size: 16px;
  color: #713d92;
}

/* Footer */
.footer {
  margin-top: 0px;
  margin: auto;
}

/* Button with Icon */
.explore-btn {
  /* display: flex; */
  width: 90%;
  align-items: center; /* Align icon and text vertically */
  justify-content: center; /* Center icon and text */
  background-color: #713d92;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  gap: 8px; /* Space between icon and text */
  margin-bottom: 10px;
}

.explore-btn i {
  font-size: 18px; /* Icon size */
  margin-right: 8px;
}

.explore-btn:hover {
  background-color: #5c3073; /* Darker hover color */
}


/* Responsive Styles */

/* Tablet Layout (screens >= 768px) */
@media (min-width: 768px) {
.grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns for larger screens */
    gap: 30px;
    margin: 60px 20px;
}

.logo-circle {
    width: 100px;
    height: 100px;
}

.logo-section h2 {
    font-size: 22px;
}

.explore-btn {
    width: 70%;
    font-size: 18px;
}
}

/* Desktop Layout (screens >= 1024px) */
@media (min-width: 1024px) {
.header {
    padding: 15px 40px;
}

.header h1 {
    font-size: 22px;
}

.grid {
    grid-template-columns: repeat(5, 1fr); /* 5 columns for wide screens */
    gap: 40px;
    margin: 80px 60px;
}

.grid-item img {
    width: 100px;
    height: 100px;
}

.grid-item p {
    font-size: 16px;
}

.logo-circle {
    width: 120px;
    height: 120px;
}

.logo-section h2 {
    font-size: 24px;
}

.explore-btn {
    width: 50%;
    font-size: 20px;
    padding: 15px 30px;
}
}

/* about */
/* Unlock Section */
.unlock-section {
  text-align: center;
  margin-top: 20px;
}

.unlock-section h2 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 20px;
}

textarea {
  width: 75%;
  height: 180px;
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 10px;
  font-size: 20px;
  margin-bottom: 20px;
  resize: none;
  outline: none;
}

textarea::placeholder {
  color: #aaa;
  padding: 10px;
  white-space: pre-line;

}

button {
  display: block;
  width: 78%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  margin: auto;
  /* margin: 30px; */
}

.btn-passphrase {
  background-color: white;
  color: #713d92;
  border: 1px solid #713d92;
}

.btn-fingerprint {
  background-color: #713d92;
  color: white;
  margin-top: 20px;
}

.info {
  width: 80%;
  /* height: 100px;
  background-color: red; */
  font-size: 16px;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  /* margin: 10px 0; */
  margin: auto;
  margin-top: 30px;
}

.lost-passphrase {
  width: 80%;
  font-size: 16px;
  color: #333;
  margin: auto;
  margin-top: 40px;
  letter-spacing: 1px;
}

.lost-passphrase a {
  color: #6db0f9;
  text-decoration: none;
}

.lost-passphrase a:hover {
  text-decoration: underline;
}

.error-message {
  color: #dc3545;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #dc3545;
  border-radius: 4px;
  background-color: #f8d7da;
}