@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");

* {
  box-sizing: border-box;
}

.container-fluid {
  margin: 0 !important;
  padding: 0 !important;
}

img {
  padding: 0 !important;
  margin: 0 !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins" !important;
  background-color: #f0f0f0 !important;
}
/* LOGIN */

form {
  margin: 50px auto !important;
  height: 320px;
  width: 500px;
  /* background-color: #ffae85; */
  background-color: #f5d9c4;
  border-radius: 10px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 10px;
  border-radius: 20px;
}
form * {
  font-family: "Poppins", sans-serif;
  color: #000000;
  letter-spacing: 0.5px;
  outline: none;
  border: none;
}
form h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  color: #471323;
}

label {
  display: block;
  color: #471323;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}
.login-input {
  display: block;
  height: 50px;
  width: 100%;
  background-color: #e1e1e1;
  border: 1px solid #471323;
  border-radius: 15px;
  padding: 0 10px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
}
::placeholder {
  color: #000;
}

.login-input:hover {
  outline: 2px solid #0001;
}

button {
  margin: 30px 20px 10px 180px;
  /* height: 80px; */
  width: 25%;
  padding: 10px;
  font-size: 15px;

  color: #fff;
  border-radius: 10px;
  background-image: linear-gradient(
    to right,
    #000046 0%,
    #1cb5e0 51%,
    #000046 100%
  );
  cursor: pointer;
}
.button input {
  background: none;
  color: #fff;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}
button:hover {
  font-size: 16px;
}
.social {
  margin-top: 30px;
  display: flex;
}
.social div {
  background: red;
  width: 150px;
  border-radius: 3px;
  padding: 5px 10px 10px 5px;
  background-color: rgba(255, 255, 255, 0.27);
  color: #eaf0fb;
  text-align: center;
}
.social div:hover {
  background-color: rgba(255, 255, 255, 0.47);
}
.social .fb {
  margin-left: 25px;
}
.social i {
  margin: 10px 0 4px;
}
/* -----------Navbar----------- */
.my-navbar {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  width: 100%;
  margin: 15px 0px;
  background-color: #fff;
}

.navbar-brand {
  font-weight: bold;
}
.navbar-brand img {
  width: 50px;
}

.nav-link {
  border-bottom: 4px solid white;
  margin-right: 24px;
  transition: 0.3s ease;
  padding: 5px;
  font-weight: 800;
  font-size: 18px;
}

.nav-link:hover {
  color: black;
  border-bottom: 4px solid #fb4f83;
}
.nav-active button {
  color: black !important;
  font-weight: 800;
  border-bottom: 4px solid #fb4f83;
}

/* ----------------------Meeting_mast.html---------------------- */

.meeting-info {
  margin: 20px 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background-color: #fff;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table td,
.table th {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 16px;
  line-height: 50px;
}

.table th {
  background-color: #516beb;
  color: #ffffff;
  text-transform: uppercase;
}
.table tr:hover {
  background-color: #fb4f83 !important;
  color: #fff;
  cursor: pointer;
}

.table tbody tr:nth-child(even) {
  background-color: #e6e6e6;
}

/*responsive*/

@media (max-width: 500px) {
  .table thead {
    display: none;
  }

  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }
  .table tr {
    margin-bottom: 15px;
  }
  .table td {
    padding-left: 50%;
    text-align: left;
    position: relative;
  }
  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
  }
}

.footer-content {
  position: fixed;
  bottom: 0;
  background-image: linear-gradient(
    to right,
    #000046 0%,
    #1cb5e0 51%,
    #000046 100%
  );
  width: 100%;
  height: 40px;
}

.footer-content p {
  text-align: center;
  font-size: 1rem;
  color: #fff;
  font-family: "raleway-bold";
  padding: 0.7rem 0.6rem 0 0.6rem;
}

.footer-content p .email {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}

.dashboard {
  text-align: center;
  margin: 20px;
}
.dashboard h4 {
  background-image: linear-gradient(
    to right,
    #000046 0%,
    #1cb5e0 51%,
    #000046 100%
  );
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: 700;
  padding: 10px 5px;
}

.dashboard .description {
  font-size: 40px;
  font-weight: 700;
  padding: 10px;
  margin: 10px;
}
.dashboard .link {
  text-align: right;
}
.dashboard .link a {
  color: #000;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}
.dashboard .link a:hover {
  text-decoration: dashed;
}
.dashboard .container1 {
  background-color: #f5d9c4;
  margin: 0 auto;
  color: #000;
  width: 75%;
  min-height: 12rem;
  max-height: fit-content;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.dashboard .container2 {
  background-color: #f5d9c4;
  margin: 0 auto;
  color: #000;
  width: 75%;
  min-height: 12rem;
  max-height: fit-content;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.dashboard .container3 {
  background-color: #f5d9c4;
  /* background-image: -webkit-linear-gradient(90deg, #ee0979 0%, #ff6a00 100%);
  margin: 0 auto; */
  margin: 50px;
  margin-bottom: 40px;
  color: #000;
  width: 90%;
  min-height: 12rem;
  max-height: fit-content;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.container3 .sub-container {
  margin: 10px;
  padding: 10px;
  display: flex;
  justify-content: space-evenly;
}
.container3 .content {
  border-right: 1px solid #000046;
  padding: 0px 50px;
}
.container3 .content h6 {
  font-size: 20px;
  font-weight: 600;
}

.container3 .content p {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  padding-top: 10px;
}
