body {
  background: linear-gradient(to bottom, #f3f6fc, #e8edf7);
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

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

.login-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  width: 320px;
  text-align: center;
}


.logo {
  width: 20%;
  margin: 5% auto;
  display:flex;
}

.illustration {
  width: 40%;
  margin: auto;
  display:flex;
}

h2 {
  margin-bottom: 5%;
  color: #222;
  
}

form {
  text-align: left;
}

label {
  display: block;
  margin: 2% 0;
  color: #333;
  font-size: 14px;
}

input[type="email"],
input[type="password"] {
  width: 80%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  margin: auto;
  display:flex;
}

.checkbox-group {
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.checkbox-group input {
  margin-right: 8px;
}

button {
  background-color: #2359e5;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}

button:hover {
  background-color: #1e4bc5;
}

.forgot-password {
  display: block;
  margin-top: 15px;
  color: #2359e5;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
}


 .meme-container {
      position: relative;
      display: inline-block;
      margin-top: 20px;
    }
    .meme-image {
      display: block;
      max-width: 100%;
      height: auto;
    }
    .meme-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 48px;
      font-weight: bold;
      text-shadow: 2px 2px 4px black;
      pointer-events: none;
    }