/* Font Import */
@font-face {
  font-family: 'Semi-Coder';
  src: url('../font/Semi-Coder-Regular.otf');
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Semi-Coder';
  background-color: #1C3A56; /* Dark blue background */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: min-content;
}

input {
  margin-top: 50px;
}

p {
  margin-bottom: 0;
}

/* Navbar Styles */
.navbar {
  padding-top: 30px;
}

.nav-link,
.navbar-brand {
  color: #FFFFFF; /* White text */
}

.nav-link {
  transition: all 0.5s;
}

.nav-link:hover {
  background-color: #FFA726; /* Orange hover */
  color: #1C3A56 !important; /* Dark blue text */
  transform: translateY(-4px);
}

/* Button Styles */
.button {
  border: 0;
  outline: 0;
}

.btn {
  user-select: none;
  position: relative;
  width: 100%;
  height: 50px;
  margin: 4px 0;
  border-radius: 8px;
  color: #1C3A56; /* Dark blue text */
  border: none;
  background: #FFA726; /* Orange background */
  letter-spacing: 1px;
  font-weight: 700; /* Slightly thicker font weight */
  text-transform: uppercase;
  cursor: pointer;
  transition: all 150ms ease;
}

.btn:active {
  transform: translateY(-3%);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.08);
}

.btn.back {
  background: #FFA726; /* Orange background */
  color: #1C3A56; /* Dark blue text */
  height: 30px;
  font-weight: 700; /* Slightly thicker font weight */
  text-transform: uppercase;
}

.btn-index {
  transition: all 0.5s;
  margin: 0.3em 0;
}

.btn-index:hover,
.btn-index a:hover {
  background-color: #FFA726; /* Orange hover */
  border-radius: 8px; /* Maintain rounded corners */
  color: #1C3A56 !important; /* Dark blue text */
  transform: translateY(-4px);
}

.btn-index a {
  color: #1C3A56; /* Dark blue text */
  font-weight: 700; /* Slightly thicker font weight */
}

/* Main Container */
.main {
  margin-top: 15px; 
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 25px;
  user-select: none;
}

.title-text {
  font-size: 50px;
  color: #FFA726; /* Orange text */
}

.title-sm-text {
  font-size: 20px;
  color: #FFA726; /* Orange text */
}

/* Settings Section */
.settings {
  position: relative;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.settings .setting {
  position: relative;
  width: 100%;
  height: calc(65px - 10px);
  background: #1C3A56; /* Dark blue background */
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 10px 25px;
  color: #FFFFFF; /* White text */
  margin-bottom: 8px;
}

.settings .setting input {
  opacity: 0;
  position: absolute;
}

.settings .setting input + label {
  user-select: none;
}

.settings .setting input + label::before, 
.settings .setting input + label::after {
  content: "";
  position: absolute;
  transition: 150ms cubic-bezier(0.24, 0, 0.5, 1);
  transform: translateY(-50%);
  top: 50%;
  right: 10px;
  cursor: pointer;
}

.settings .setting input + label::before {
  height: 30px;
  width: 50px;
  border-radius: 30px;
  background: rgba(214, 214, 214, 0.434);
}

.settings .setting input + label::after {
  height: 24px;
  width: 24px;
  border-radius: 60px;
  right: 32px;
  background: #1C3A56; /* Dark blue background */
}

.settings .setting input:checked + label::before {
  background: #FFA726; /* Orange background */
  transition: all 150ms cubic-bezier(0, 0, 0, 0.1);
}

.settings .setting input:checked + label::after {
  right: 14px;
}

.settings .setting input:focus + label::before {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75);
}

.settings .setting input:disabled + label::before, 
.settings .setting input:disabled + label::after {
  cursor: not-allowed;
}

.settings .setting input:disabled + label::before {
  background: #4f4f6a;
}

.settings .setting input:disabled + label::after {
  background: #909090;
}

/* Buttons Container */
.buttons-container {
  margin: 30px 0;
}
