/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #E8F5E9; /* Pale Green */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #000000;
}

/* Container Styles */
.signin-container {
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding: 20px;
}

/* Logo Styles */
.logo-container {
  margin-bottom: 30px;
}

.collabify-logo {
  width: 120px;
  height: auto;
}

/* Form Styles */
/* .signin-form {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} */

.form-group {
  margin-bottom: 20px;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 2px solid #1fb5c2;
  border-radius: 5px;
}

input[type="email"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: #1fb5c2; /* Green Accent */
}

/* Forgot Password Link (Outside Input) */
.forgot-password {
  display: block;
  text-align: right;
  margin-top: -15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #1fb5c2;
  text-decoration: none;
  font-weight: bold;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Submit Button */
.signin-btn {
  width: 100%;
  background-color: #1fb5c2;
  color: white;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.signin-btn:hover {
  background-color: #168e9c;
}

/* Signup Link */
.signup-link {
  margin-top: 15px;
  font-size: 14px;
}

.signup-link a {
  color: #1fb5c2;
  text-decoration: none;
  font-weight: bold;
}

.signup-link a:hover {
  text-decoration: underline;
}
