.login-main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-video-background {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  background-size: cover;
  margin: 0;
  height: 100vh;
  background: radial-gradient(circle at top, #071d33, #001020),
              linear-gradient(to bottom, transparent, #001020 50%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: multiply;

}

.login-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire container */
}

.login-container {
  background-color: #0a194a;
  background-size: cover;
}

.login-label {
  color: #c7c7c7;
  font-size: 14px;
}

.login-area {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 60%;
  height: 60%;
  background-color: #020d1a41;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 10px;
  /* border: 1px solid black; */
  transition: background-color 0.3s ease-in-out;
}

.login-area:hover{
  background-color: #020d1b41;
}

.login-area-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
  width: 90%;
  /* border: 1px solid black; */
}

.login-area-child-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  margin-bottom: 20px;
  width: 70%;
  /* border: 1px solid black; */
}

.login-area-child-child form{
  width: 100%;
}

.login-footer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* border: 1px solid black; */
}
.card-mine{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.card-mine form .form-group .form-control{
  font-size: 14px;
  transition: transform 0.3s ease-in-out;
}

.card-mine form .form-group .form-control:hover{
  transform: scale(1.03);
}

.logo_macma{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 50px;
  transition: transform 0.3s ease-in-out;
}

.logo_macma:hover {
  transform: scale(1.1);
}

.logo_macma img
{
  width: 100px;
  margin: auto;
}

.login-btn
{
  font-size: 14px;
  transition: background-color 0.1s ease-in-out;
}