* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.phone-preview img {
  width: 350px;
}

.login-box {
  background: white;
  border: 1px solid #ddd;
  padding: 40px;
  width: 350px;
  text-align: center;
}

.logo {
  font-size: 30px;
  margin-bottom: 20px;
}

.login-box input {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-box button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: #0095f6;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.separator {
  display: flex;
  align-items: center;
  margin: 20px 0;
  gap: 10px;
}

.line {
  flex: 1;
  height: 1px;
  background: #ddd;
}

.facebook-login {
  display: block;
  color: #385185;
  margin-bottom: 15px;
  text-decoration: none;
  font-weight: bold;
}

.forgot {
  font-size: 12px;
  color: #00376b;
  text-decoration: none;
}

.signup-box {
  margin-top: 10px;
  background: white;
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
}

/* 📱 Responsive */

@media (max-width: 900px) {
  .phone-preview {
    display: none;
  }

  body {
    height: auto;
    padding: 20px;
  }

  .login-container {
    flex-direction: column;
  }
}
.profile-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 15px;
  object-fit: cover;
}