@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap");

body {
  font-family: "Tajawal", sans-serif;
}

.custom-card {
  margin: 10px;
  padding: 30px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#952c7f),
    to(#ea494e)
  );
  background-image: linear-gradient(to right, #952c7f, #ea494e);
  margin-right: auto;
  margin-left: auto;
  cursor: pointer;
}

.card h2 {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}

.btn-close {
  background-color: #fff;
  float: left;
  border: 1px solid #eee;
}

label {
  font-weight: bold;
}

.alert {
  text-align: right;
  margin: 20px auto;
}

.btn-primary {
  background-image: linear-gradient(to right, #952c7f, #ea494e);
  border: 0px;
}

.btn-gradient {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  -webkit-column-gap: 6px;
  -moz-column-gap: 6px;
  column-gap: 6px;
  border: 0;
  letter-spacing: -1px;
  background-image: linear-gradient(
    45deg,
    #480689,
    #c8088c,
    #c8088c,
    #952c7f,
    #d4088c
  );
  background-size: 400%;
  -webkit-animation: bg_animation 10s infinite alternate;
  animation: bg_animation 10s infinite alternate;
}

.btn-submit {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.btn-large {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
}

.btn-large:hover {
  color: #fff;
}

.swal2-container table {
}

.swal2-container table,
th,
td {
  border: 1px solid #d3d3d3;
  border-collapse: collapse;
  padding: 15px 0px;
  font-size: 15px;
}

@media screen and (max-width: 480px) {
  .swal2-container table,
  th,
  td {
    font-size: 10px;
  }
}
