body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fde0e0;
}

.signin-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.signin-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  width: 400px;
  text-align: center;
}

.signin-card h1 {
  margin-bottom: 10px;
  font-size: 28px;
  color: #333;
}

.signin-card p {
  margin-bottom: 20px;
  color: #666;
}

.signin-form {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.signin-form label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.signin-form input {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.signin-form button {
  padding: 12px;
  background: #ff4d6d;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.signin-form button:hover {
  background: #fde0e0;
  color: #ff4d6d;
}

.signin-links {
  margin-top: 15px;
  font-size: 14px;
}

.signin-links a {
  color: #ff4d6d;
  text-decoration: none;
}

.signin-links span {
  margin: 0 5px;
  color: #888;
}

.social-login {
  margin-top: 20px;
}

.social-login p {
  margin-bottom: 10px;
  color: #666;
}

.social-btn {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 15px;
  background: #eee;
  border-radius: 5px;
  color: #555;
  text-decoration: none;
}

.social-btn:hover {
  background: #ff4d6d;
  color: #ffffff;
}
