* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Ubuntu", sans-serif;
}

.video_sec {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.video_sec video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0.45);
}

.video_sec .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.585);
  padding: 30px;
  width: 400px;
  text-align: center;
  box-shadow: 1px 10px 49px 1px rgba(255, 255, 255, 0.55);
  -webkit-box-shadow: 1px 10px 49px 1px rgba(255, 255, 255, 0.55);
  -moz-box-shadow: 1px 10px 49px 1px rgba(255, 255, 255, 0.55);
}

.login-container h2 {
  margin-bottom: 20px;
  color: #ffffff;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-group label {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 5px;
}

.form-group input {
  width: 75%;
  padding: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.585);
  background: transparent;
  color: white;
  border-radius: 5px;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.login-btn {
  background-color: #00000000;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.585);
  padding: 10px 20px;
  font-family: "Ubuntu", sans-serif !important;
  margin-top: 5px;
  cursor: pointer;
  width: 55%;
}

.login-btn:hover {
  background-color: #000000;
  color: rgb(255, 255, 255);
}

.register-link {
  margin-top: 15px;
  display: block;
  color: #ffffff;
}

.register-link:hover {
  color: #000000;
}