html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
.body {
  margin: 0;
  height: 100vh;
  background: url("./../images/galaxy.gif") no-repeat center center fixed;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.body .signup-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 400px;
  text-align: center;
  height: auto;
}

.body .signup-container .text {
  margin-bottom: 10px;
  font-size: 25px;
}

.body .signup-container .form .input-field {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.body .signup-container .form .signup-btn {
  width: 100%;
  padding: 14px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.body .signup-container .signup-footer {
  margin-top: 10px;
  font-size: 14px;
}

.body .signup-container .google-signup-btn {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: 1px solid #ccc;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

.body .signup-container .google-signup-btn .google-logo {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.body .signup-container .form .input-field:focus {
  border-color: #4CAF50;
  outline: none;
}
.body .signup-container .form .signup-btn:hover {
  background-color: #45a049;
}
.body .signup-container .google-signup-btn:hover {
  background-color: rgba(114, 114, 114, 0.089);
}/*# sourceMappingURL=style.css.map */