* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #fff;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.image-section img {
  height: 500px;
  border-radius: 20px;
}

.login-section {
  background: transparent;
  width: 350px;
  text-align: center;
}

.logo {
  font-family: italic;
  font-size: 50px;      
  color: #fff;
  margin-bottom: 20px;
}

.login-form {
  background: #111;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #262626;
}

.login-form input {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  background: #000;
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
}

.login-form button {
  width: 100%;
  background-color: #385185;
  color: #fff;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.div {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.div hr {
  flex: 1;
  border: none;
  border-top: 1px solid #333;
}

.div span {
  margin: 0 10px;
  color: #777;
}

.fb-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #0095f6;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.fb-login img {
  width: 18px;
  height: 18px;
}

.forgot {
  display: block;
  margin-top: 15px;
  color: #b2b2b2;
  font-size: 14px;
  text-decoration: none;
}

.signup-box {
  margin-top: 15px;
  background: #111;
  padding: 15px;
  border: 1px solid #262626;
  border-radius: 10px;
}

.signup-box a {
  color: #0095f6;
  text-decoration: none;
  font-weight: 600;
}
