@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
}
header .logo {
  margin: 7px 0;
  width: 100px;
  cursor: pointer;
  color: #f2f2f2;
  font-weight: bold;
  font-size: 2rem;
  display: flex;
  color: #6086b5;
}
header .logo span {
  color: black;
}
header .logo img {
  width: 20px;
}

body {
  font-family: poppins;
  background: #f2f2f2;
  width: 100%;
  height: 100vh;
  background: #dcdae7;
}

h1,
p {
  margin: 1em auto;
  text-align: center;
}
h1 img,
p img {
  width: 18px;
}
h1 span,
p span {
  color: #6086b5;
}

h2 {
  text-align: center;
  font-family: poppins;
  font-size: 25px;
}

span {
  color: #000;
}

label {
  display: block;
  color: #6086b5;
  font-weight: 700;
  margin: 0.5rem 0;
}

form {
  width: 60vw;
  max-width: 500px;
  min-width: 300px;
  margin: 0 auto;
}

fieldset {
  padding: 1.5rem 0;
  border: 0;
  border: 2px solid #fff;
  padding: 20px;
}

input {
  width: 100%;
  margin: 0;
  margin-top: 5px;
  min-height: 2em;
  margin-bottom: 20px;
}

.sign-out-btn {
  background: #6086b5;
  font-size: 1rem;
  color: #fff;
  padding: 10px 14px;
  border-radius: 20px;
  width: 120px;
  display: flex;
  justify-content: center;
  margin-top: 1em;
  cursor: pointer;
  border: none;
}

.sign-out-btn:hover {
  background: #e0e0e0;
  color: #000;
  background: #000;
  border: none;
  background: #dcdae7;
  color: #000;
  color: #6086b5;
  border: 1px solid #6086b5;
}

p {
  font-size: 1rem;
}

a.signup {
  text-decoration: underline;
  color: #000;
}

/* Submit Button */
button[type=submit] {
  width: 100%;
  background: #007bff;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 30px;
}

button[type=submit]:disabled {
  background: #ccc;
  color: #000;
  cursor: not-allowed;
}

button[type=submit]:hover:not(:disabled) {
  background: #0056b3;
}

/* Modal Styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  width: 300px;
}

.modal-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.modal-btn {
  margin: 0 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modal-btn:first-of-type {
  background: #007bff;
  color: white;
}

.modal-btn:last-of-type {
  background: #f4f4f9;
  color: #333;
}

.modal-btn:hover {
  opacity: 0.9;
}

.sign-up {
  font-size: 1rem;
}/*# sourceMappingURL=form.css.map */