* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 20px;
}

.header {
  position: absolute;
  top: 40px;
  left: 60px;
}

.logo {
  width: 190px;
  height: 75px;
}
/* Main Content */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

/* Lock Icon */
.icon-container {
  margin-bottom: 32px;
}

.lock-icon-1 {
  width: 80px;
  height: 80px;
  background-color: #eaefff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.lock-icon-1 i {
  font-size: 32px;
  color: #283c80;
}

/* Heading */
h1 {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Description */
.description {
  font-size: 16px;
  color: #5e6369;
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Email Input */
.input-wrapper {
  position: relative;
}

.input-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #5e6369;
  font-size: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
}

.email-input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  background-color: #f1f5f9;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.email-input::placeholder {
  color: #5e6369;
}

.email-input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #d25e00;
}

/* Buttons */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.send-btn {
  padding: 14px 24px;
  background-color: #d25e00;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.send-btn:hover {
  background-color: #b84e00;
}

.send-btn:active {
  background-color: #a04400;
}

.back-btn {
  padding: 14px 24px;
  background-color: #eeeff2;
  color: #5e6369;
  border: 1px solid #dde1e6;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #e2e5eb;
}

.back-arrow {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 600px) {
  .header {
    display: none;
  }

  h1 {
    font-size: 24px;
  }

  .description {
    font-size: 14px;
  }

  main {
    padding: 30px 16px;
  }
}

.time-filters {
  background: #f1f5f9;
  padding: 4px 6px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
  width: fit-content;
  margin-left: auto;
  align-items: center;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
}

.filter-btn {
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #a5a6a8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.filter-btn.active {
  background: #283c80;
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 20px;
  display: block;
}

.lock-icon i {
  font-size: 18px;
  color: #1e3a8a;
}
/* Phosphor Icon Styling */
[class^="ph-"],
[class*=" ph-"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.error-msg {
    /*display: none;*/
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 16px;
    color: #e22f2f;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
}
