/* login  */
.login-container {
  width: 100%;
  max-width: 350px;
  padding: 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.login-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.login-container .btn-success {
  background: #28a745;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 30px;
  font-size: 1rem;
}

.login-container .btn-success:hover {
  background: #1d7030;
}

.login-container .form-control {
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 1rem;
}

.login-container .alert {
  margin-top: 20px;
}

/* box  */
.small-box {
  border-radius: 10px;
  color: #fff;
  padding: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.small-box:hover {
  transform: translateY(-5px);
}

.small-box .icon {
  position: absolute;
  top: -20px;
  right: 10px;
  font-size: 80px;
  opacity: 0.4;
}

.small-box-footer {
  display: block;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.small-box-footer:hover {
  background: rgba(0, 0, 0, 0.2);
}

.bg-black {
  background: #343a40 !important;
}

/* content  */
.content-wrapper {
  padding: 20px;
}

.content-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #dee2e6;
}

.content-header h1 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.breadcrumb {
  background: none;
  padding: 0;
}

.box {
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.box-header {
  padding: 15px;
  background: #17a2b8;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.box-title {
  margin: 0;
  font-size: 1.25rem;
}

.box-body {
  padding: 20px;
}

.form-control {
  border-radius: 5px;
  box-shadow: none;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.form-control:focus {
  border-color: #17a2b8;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.btn-primary {
  background-color: #17a2b8;
  border-color: #17a2b8;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #138496;
  border-color: #117a8b;
}

.alert {
  border-radius: 5px;
  padding: 10px 20px;
}
