/* Reset some defaults */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
}

/* Header with small logo */
header {
  width: 100%;
  text-align: left;
  padding: 10px 20px;
}

.logo-small {
  width: 60px;
  height: auto;  
  display: block;
}

/* Main container */
.container {
  text-align: center;
  margin-top: 40px;
}

/* Headings */
h1 {
  font-size: 28px;
  margin-bottom: 20px;
}
h2 {
  font-size: 20px;
  margin: 20px 0;
}

/* Login buttons with icons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  margin: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  font-size: 16px;
  transition: background 0.3s ease;
}
.btn img {
  width: 28px;
  height: 28px;
}

/* Button colors */
.professional {
  background: green;
}
.professional:hover {
  background: #0a5c0a;
}
.residential {
  background: darkgreen;
}
.residential:hover {
  background: #064d06;
}

/* Create account link */
.create {
  margin-top: 15px;
}
.create a {
  color: blue;
  text-decoration: underline;
}






/* Login page container */
.login-container {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  text-align: center;   /* center text inside */
  width: 350px;
  margin: 60px auto;    /* centers box horizontally */
}

/* Center heading */
.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Center form elements */
.login-container form {
  display: flex;
  flex-direction: column;
  align-items: center;   /* center inputs + button */
}

/* Input fields */
.login-container input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;    /* centers placeholder + typed text */
}

/* Sign in button */
.signin {
  width: 100%;
  padding: 12px;
  border: none;
  background: #1e90ff;
  color: white;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}
.signin:hover {
  background: #0073e6;
}

/* Forgot password link */
.forgot {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: gray;
  text-decoration: none;
}
