@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    background-color: #aed6f1 ;
    background-image: url("logo.png");
}

.container {
  width: 768px;
  max-width: 100%;
  min-height: 650px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
              0 10px 10px rgba(0, 0, 0, 0.22);
  position: relative;
  display: flex;
  overflow: hidden;
}

.form-container {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  background-color: #fff;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

form h1 {
  margin-bottom: 20px;
  font-weight: 700;
  color: #333;
}

input {
  width: 100%;
  padding: 12px 15px;
  margin: 8px 0;
  border: none;
  border-radius: 10px;
  background-color: #eee;
}

button {
  background-color: #5499c7;
  color: #fff;
  border: none;
  padding: 12px 80px;
  border-radius: 20px;
  font-weight: 700;
  margin: 20px 0;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

button:hover {
  letter-spacing: 2px;
}

.social-container {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.social-container a {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: 0.3s ease-in-out;
}

.social-container a:hover {
  border-color: #4bb6b7;
  color: #4bb6b7;
}

.overlay-container {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}


.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(46, 94, 109, 0.5), rgba(46, 94, 109, 0));
  z-index: 1;
}

.overlay-panel {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 30px;
  color: white;
}

.overlay-panel h1 {
  font-size: 32px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.overlay-panel p {
  font-size: 14px;
  line-height: 1.5;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
