body {
    background: #0f0f0f;
    color: #fff;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container, .register-container {
    background: #1a1a1a; /* Slightly lighter than the previous #121212 */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6), 0px 0px 5px rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.login-container h1, .register-container h1 {
    font-size: 1.5rem;
    color: #9b59b6; /* Purple color */
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.login-container .form-control, .register-container .form-control {
    background: #1e1e1e;
    color: #fff;
    border: 1px solid #333;
    border-radius: 8px;
}

.login-container .form-control::placeholder, 
.register-container .form-control::placeholder {
    color: #fff; /* Placeholder text color set to white */
    opacity: 0.7; /* Slightly faded for better contrast */
}

.login-container .form-control:focus, .register-container .form-control:focus {
    box-shadow: none;
    border-color: #9b59b6; /* Purple border */
}

.login-container button, .register-container button {
    background: #9b59b6; /* Purple color */
    border: none;
    color: #fff; /* Changed color to white for better contrast */
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%; /* Center and stretch button to the container width */
    margin: 0 auto; /* Center the button */
}

.login-container button:hover, .register-container button:hover {
    background: #8e44ad; /* Slightly darker purple for hover */
}

.login-container a, .register-container a {
    color: #9b59b6; /* Purple color */
    font-size: 0.9rem;
    text-decoration: none;
}

.login-container a:hover, .register-container a:hover {
    text-decoration: underline;
}

.login-container .checkbox, .register-container .checkbox {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: start;
}

/* Spinner Animation */
.spinner {
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #9b59b6; /* Purple color */
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: none; /* Hidden by default */
}

button.loading .spinner {
    display: inline-block; /* Show spinner when button is loading */
}

button.loading span {
    display: none; /* Hide button text when loading */
}

/* Spinner Keyframes */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.topmenu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    background-color: #191F2D;
}

.footermenu {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10000;
    background-color: #191F2D;
}

.container {
    width: 95% !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

@media (max-width: 1049px) {
  .mainmenu {
    display: none !important;
  }
}

@media (min-width: 1049px) {
  .mobile-mainmenu {
    display: none !important;
  }
}

.btn-menu-edit {
  color:#ffffff; 
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.btn-menu-edit:hover, .btn-menu-edit:focus, .btn-menu-edit.focus {
  color: #ffffff;
  background-color: rgba(255,255,255,0.30);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.mobilebtn-menu-edit {
  color:#ffffff; 
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  font-size: 14px;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.mobilebtn-menu-edit:hover, .mobilebtn-menu-edit:focus, .mobilebtn-menu-edit.focus {
  color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #191F2D;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.6;
  color: #8F9198;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  background-color: #24293A;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (min-width: 1200px) {
  .block-responsive {
    width: 75%;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

@media (max-width: 1200px) {
  .block-responsive {
    width: 75%;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

@media (max-width: 767px) {
  .block-responsive {
    width: 75% !important;
    background-size: cover !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

@media (max-width: 480px) {
  .block-responsive {
    width: 95% !important;
    background-size: cover !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

@media (max-width: 767px) {
  .row-responsive {
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .column-responsive {
    display: table-cell;
  }
}

@media (max-width: 768px) {
  .column-responsive {
    display: block;
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .cell-responsive {
    width: 100% !important;
  }
}

#dashvideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
}
#dashcontent {
    background-image: linear-gradient(rgba(39, 47, 69, 0.95), rgba(25, 31, 45, 0.80));
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.font-Poppins-Black {
  font-family: 'Poppins';
  font-weight: 800;
}

.font-Poppins-Bold {
  font-family: 'Poppins';
  font-weight: 700;
  -webkit-font-weight: 800;
}

.font-Poppins-Regular {
  font-family: 'Poppins';
  font-weight: 400;
}

.font-Montserrat-Black {
  font-family: 'Poppins';
  font-weight: 800;
}

.font-Montserrat-Bold {
  font-family: 'Montserrat';
  font-weight: 700;
  -webkit-font-weight: 800;
}

.font-Montserrat-Regular {
  font-family: 'Montserrat';
  font-weight: 400;
}

.font-Roboto-Bold {
  font-family: 'Roboto';
  font-weight: 700;
  -webkit-font-weight: 800;
}

.font-Roboto-Regular {
  font-family: 'Roboto';
  font-weight: 400;
}

.font-Oswald-Bold {
  font-family: 'Oswald';
  font-weight: 700;
  -webkit-font-weight: 800;
}

.font-Oswald-Regular {
  font-family: 'Oswald';
  font-weight: 400;
}

.font-OpenSans-Bold {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  -webkit-font-weight: 800;
}

.font-OpenSans-Regular {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.font-FjallaOne-Bold {
  font-family: 'Fjalla One', sans-serif;
  font-weight: 700;
  -webkit-font-weight: 800;
}

.font-FjallaOne-Regular {
  font-family: 'Fjalla One', sans-serif;
  font-weight: 400;
}

.font-BubbleGumSans-Bold {
  font-family: 'BubbleGum Sans', sans-serif;
  font-weight: 700;
  -webkit-font-weight: 800;
}

.font-BubbleGumSans-Regular {
  font-family: 'BubbleGum Sans', sans-serif;
  font-weight: 400;
}

/*FONT SIZES START*/

.pdffontsize-10 {
    font-size: 10px;
} 
.pdffontsize-15 {
    font-size: 15px;
} 
.pdffontsize-20 {
    font-size: 20px;
} 
.pdffontsize-25 {
    font-size: 25px;
} 
.pdffontsize-30 {
    font-size: 30px;
}
.pdffontsize-35 {
    font-size: 35px;
} 
.pdffontsize-40 {
    font-size: 40px;
} 
.pdffontsize-45 {
    font-size: 45px;
}
.pdffontsize-50 {
    font-size: 50px;
} 
.pdffontsize-55 {
    font-size: 55px;
}
.pdffontsize-60 {
    font-size: 60px;
} 
.pdffontsize-70 {
    font-size: 70px;
}
.pdffontsize-80 {
    font-size: 80px;
}
.pdffontsize-90 {
    font-size: 90px;
}
.pdffontsize-100 {
    font-size: 100px;
}
.pdffontsize-110 {
    font-size: 110px;
}
.pdffontsize-120 {
    font-size: 120px;
}

.fontsize-10 {
    font-size: 10px;
} 
.fontsize-15 {
    font-size: 15px;
} 
.fontsize-20 {
    font-size: 20px;
} 
.fontsize-25 {
    font-size: 25px;
} 
.fontsize-30 {
    font-size: 30px;
}
.fontsize-35 {
    font-size: 35px;
} 
.fontsize-40 {
    font-size: 40px;
} 
.fontsize-45 {
    font-size: 45px;
}
.fontsize-50 {
    font-size: 50px;
} 
.fontsize-55 {
    font-size: 55px;
}
.fontsize-60 {
    font-size: 60px;
} 
.fontsize-70 {
    font-size: 70px;
}
.fontsize-80 {
    font-size: 80px;
}
.fontsize-90 {
    font-size: 90px;
}
.fontsize-100 {
    font-size: 100px;
}
.fontsize-110 {
    font-size: 110px;
}
.fontsize-120 {
    font-size: 120px;
}

@media (min-width: 1920px) {
    .fontsize-10 {
        font-size:0.52vw!important;
    } 
    .fontsize-15 {
        font-size:0.78vw!important;
    } 
    .fontsize-20 {
        font-size:1.30vw!important;
    } 
    .fontsize-25 {
        font-size:1.41vw!important;
    } 
    .fontsize-30 {
        font-size:1.56vw!important;
    }
    .fontsize-35 {
        font-size:1.82vw!important;
    } 
    .fontsize-40 {
        font-size:2.08vw!important;
    } 
    .fontsize-45 {
        font-size:2.34vw!important;
    }
    .fontsize-50 {
        font-size:2.60vw!important;
    } 
    .fontsize-55 {
        font-size:2.86vw!important;
    }
    .fontsize-60 {
        font-size:3.12vw!important;
    } 
    .fontsize-70 {
        font-size:3.64vw!important;
    }
    .fontsize-80 {
        font-size:4.16vw!important;
    }
    .fontsize-90 {
        font-size:4.68vw!important;
    }
    .fontsize-100 {
        font-size:5.20vw!important;
    }
    .fontsize-110 {
        font-size:5.72vw!important;
    }
    .fontsize-120 {
        font-size:6.25vw!important;
    }
}

@media (max-width: 767px) {
    .fontsize-10 {
        font-size: 8px;
    } 
    .fontsize-15 {
        font-size: 12px;
    } 
    .fontsize-20 {
        font-size: 15px;
    } 
    .fontsize-25 {
        font-size: 20px;
    } 
    .fontsize-30 {
        font-size: 25px;
    }
    .fontsize-35 {
        font-size: 30px;
    } 
    .fontsize-40 {
        font-size: 35px;
    } 
    .fontsize-45 {
        font-size: 40px;
    }
    .fontsize-50 {
        font-size: 45px;
    } 
    .fontsize-55 {
        font-size: 50px;
    }
    .fontsize-60 {
        font-size: 55px;
    } 
    .fontsize-70 {
        font-size: 60px;
    }
    .fontsize-80 {
        font-size: 70px;
    }
    .fontsize-90 {
        font-size: 80px;
    }
    .fontsize-100 {
        font-size: 90px;
    }
    .fontsize-110 {
        font-size: 100px;
    }
    .fontsize-120 {
        font-size: 110px;
    }
}

.fontsize-1vw {
    font-size:1vw;
}
.fontsize-1-5vw {
    font-size:1.5vw;
}
.fontsize-2vw {
    font-size:2vw;
}
.fontsize-2-5vw {
    font-size:2.5vw;
}
.fontsize-3vw {
    font-size:3vw;
}
.fontsize-3-5vw {
    font-size:3.5vw;
}
.fontsize-4vw {
    font-size:4vw;
}
.fontsize-4-5vw {
    font-size:4.5vw;
}
.fontsize-5vw {
    font-size:5vw;
}
.fontsize-5-5vw {
    font-size:5.5vw;
}
.fontsize-6vw {
    font-size:6vw;
}
.fontsize-6-5vw {
    font-size:6.5vw;
}
.fontsize-7vw {
    font-size:7vw;
}
.fontsize-7-5vw {
    font-size:7.5vw;
}
.fontsize-8vw {
    font-size:8vw;
}
.fontsize-8-5vw {
    font-size:8.5vw;
}
.fontsize-9vw {
    font-size:9vw;
}
.fontsize-9-5vw {
    font-size:9.5vw;
}
.fontsize-10vw {
    font-size:10vw;
}

@media (max-width: 767px){
    .fontsize-1vw {
        font-size:2vw;
    }
    .fontsize-1-5vw {
        font-size:2.5vw;
    }
    .fontsize-2vw {
        font-size:3vw;
    }
    .fontsize-2-5vw {
        font-size:3.5vw;
    }
    .fontsize-3vw {
        font-size:3.5vw;
    }
}

/*FONT SIZES END*/

/*LINE HEIGHT START*/

.lineheight-1 {
  line-height: 1.1;
} 

.lineheight-12 {
  line-height: 1.2;
} 

.lineheight-13 {
  line-height: 1.3;
} 

.lineheight-14 {
  line-height: 1.4;
} 

.lineheight-15 {
  line-height: 1.5;
} 

.lineheight-16 {
  line-height: 1.6;
} 

.lineheight-17 {
  line-height: 1.7;
} 

.lineheight-18 {
  line-height: 1.8;
} 

.lineheight-19 {
  line-height: 1.9;
} 

.lineheight-2 {
  line-height: 2;
} 

/*LINE HEIGHT END*/

.title {
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.buttoncss {
  display: table;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
}

.buttoncss:hover {
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 767px) {
  .button-responsive {
    width: 100% !important;
  }
}