@import url(https://fonts.googleapis.com/css?family=Helvetica:500);

body {
    background-color: #070814 !important;
    width: 100vw;
    height: 100vh;
    /*box-sizing: border-box;*/
    color: #000;
    margin: 0 !important;
    font-family: 'Poppins',sans-serif;
    background-image: url("/static/base/images/landing-page.813cdab2c525.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    overflow: hidden;
}
.login-section {
    position: fixed;
    top: 0;
    height: 100vh;
    width:100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    text-align: center;
}

.login-heading {
  cursor: pointer;
  color: #000;
  font-size: 5vmin;
  font-weight: 200;
  transition: font-weight 250ms ease-in-out;
}

.login-div {
    padding: 50px;
    margin: 30px;
    /*width: 400px;*/
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fieldWrapper {
    width: 320px;
    padding:5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.fieldWrapper > input {
    height: 30px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 250px;
    margin: 0px 0px 20px 0px;
    color: #7a7a7a;
    background-color: #f2f2f2;
}

.fieldWrapper > input:focus {
    border: none;
    outline: none;
}

.fieldWrapper > label {
    color: #000;
    cursor: pointer;
    font-size: 14px;
    font-weight: 200;
    transition: font-weight 250ms ease-in-out;
    margin-right: 15px;
    margin-bottom: 20px;
}

.error-message {
    color: red;
    font-size: 14px;
    font-weight: 400;
}

.google-btn {
    display: flex;
    width: 270px;
    height: 50px;
    /*padding: 0 10px 0 4px;*/
    background-color: #fff;
    border-radius: 8px;
    justify-content: space-evenly;
}



.google-icon {
    width: 32px;
}

.btn-text {
    /*margin: 11px 11px 0 0;*/
    margin-left: 6px;
    color: #000;
    font-size: 15px;
    letter-spacing: 1px;
    font-family: 'Poppins',sans-serif;
}
.btn-text:hover {
    text-decoration: none;
    color: #444;
}

.bottom-image {
  position: fixed;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
}

.social-button,
.social-button * {
  box-sizing: border-box;
}
.social-button {
  background: #ffffff;
  border-radius: 8px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  border-width: 1px;
  padding: 8px;
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 280px;
  position: relative;
}
.icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

.label {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  position: relative;
}

.social-button:hover  {
    text-decoration: none !important;
    cursor: pointer;
    color: #000;
}
