
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
  animation: pulse 2s infinite;
}
#password-strength {
    font-size: 12px;
}

.very-weak {
    color: red !important;
}

.weak {
    color: red !important;
}

.medium {
    color: orange !important;
}

.strong {
    color: green !important;
}
.password-toggle {
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #d1d3e2;
    border-radius: 0 10px 10px 0;
}
.logo-spinner {
  animation: spin 1s linear infinite;
  width: 50px;
  height: 50px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    background-color: #00000080;
  }
  50% {
    background-color: #000000CC;
  }
  100% {
    background-color: #00000080;
  }
}

.hidden {
  display: none;
}
#storage-used {
    font-weight: bold;
    color: #007bff;
}


.hero {
  background-color: #333;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero button {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.hero button:hover {
  background-color: #3e8e41;
}

.features {
  padding: 50px 0;
}

.features .section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.features .section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.features .card {
  margin-bottom: 20px;
}

.features .card-body {
  padding: 20px;
}

.features .card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.features .card-text {
  font-size: 16px;
  color: #666;
}

.features {
  padding: 50px 0;
}

.features .section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.features .section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.features .card {
  margin-bottom: 20px;
}

.features .card-body {
  padding: 20px;
}

.features .card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.features .card-text {
  font-size: 16px;
  color: #666;
}

.social-media {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.social-media li {
  margin-right: 20px;
}

.social-media a {
  color: #666;
  transition: color 0.2s ease;
}

.social-media a:hover {
  color: #333;
}


.hero-links {
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
}

.hero-link {
  margin-right: -17px;
  font-size: 39px;
  color: #333;
  text-decoration: none;
}

.hero-link i {
  margin-right: 10px;
  font-size: 52px;
}

.upload-beat-btn {
background-color: #181616;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 17px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.upload-beat-btn:hover {
  background-color: #333;
}

.upload-beat-btn .active {
  background-color: #094a33; /* Green color */
  color: #fff;
}
.beat-progress {
  width: 100%;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f5f5f5;
}

#beat-progress-bar.progress-bar {
  height: 100%;
  background-color: #007bff;
  border-radius: 10px;
  transition: width 0.4s ease;
  text-align: center;
  color: #fff;
  line-height: 20px;
  width: 0%;
}
