body {
  font-family: "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Arial", sans-serif;
}

ul {
    list-style-type: none;
    padding-left: 16px;
    margin: 8px 0;
}

li {

}

video {
  width: 100%;
}

@media (max-width: 600px) {
  video {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 601px) and (max-width: 1080px) {
  video {
    width: 100%;
    height: auto;
  }
}

.section-container {
  display: flex;
  justify-content: flex-start;
}

.section-nav {
  min-width: 304px;
}

.section-nav-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-content {
  margin: 0 8px;
}

.section-text {
  margin: 0 16px;
}

a {
  color: #0077cc;        /* Sets the link color */
  text-decoration: none; /* Removes the underline from links */
  font-weight: bold;     /* Makes the link text bold */
}

a:hover {
  color: #005fa3;       /* Changes the link color when hovered */
  text-decoration: underline; /* Adds underline on hover */
}

a:active {
  color: #003d66;       /* Changes the link color when active/clicked */
}


button {
  background-color: #4CAF50; /* Green background */
  color: white; /* White text */
  padding: 12px 24px; /* Padding inside the button */
  border: 1px solid transparent; /* Transparent border */
  border-radius: 3px; /* Slightly rounded corners */
  font-size: 16px; /* Text size */
  font-family: 'Arial', sans-serif; /* Font family */
  transition: all 0.3s ease; /* Smooth transition for all properties */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  text-transform: uppercase; /* Uppercase text */
}

button:hover {
  background-color: #45a049; /* Slightly darker green on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Larger shadow on hover */
}

button:active {
  background-color: #397d35; /* Even darker green when clicked */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Smaller shadow when clicked */
}

button:focus {
  outline: none; /* Removes the default focus outline */
  border: 1px solid #fff; /* Optional: adds a white border */
}

button:disabled {
  background-color: #cccccc; /* Grey background for disabled state */
  color: #666666; /* Dark grey text for disabled state */
  cursor: not-allowed; /* Cursor to indicate the button is disabled */
  box-shadow: none; /* No shadow for disabled state */
}

.signin-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

.form-container {
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

form div {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #5881D8;
  outline: none;
}


@media (max-width: 768px) {
  form {
    margin: 20px;
  }
}
