@media screen and (min-width: 0px) and (max-width: 320px) {
  /* LOGIN FORM STARTS HERE */
  .styled-lebel {
    color: #fff;
    line-height: 28px;
    font-family: Inter;
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .styled-lebel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    padding: 14px;
    background-color: #eee;
    border-radius: 4px;
  }

  .styled-lebel:hover input ~ .checkmark {
    background-color: #ccc;
  }

  .styled-lebel input:checked ~ .checkmark {
    background-color: #103c5e;
  }

  /* Show the checkmark when checked */
  .styled-lebel input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .styled-lebel .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .loginForm-container {
    display: block;
    overflow: hidden;
    width: 100%;
    background: #012933;
    border-radius: 8px;
    margin: 40px 0 80px 0;
  }

  #loginForm {
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    background: transparent linear-gradient(290deg, #1a9646 0, #0f50a0 100%) 0 0
      no-repeat padding-box;
    font-family: "Work Sans", sans-serif;
    padding-bottom: 100px;
    color: #83cce3;
  }

  #loginForm error {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
    color: #fff;
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
  }

  #loginForm img {
    display: block;
    width: 20%;
    padding: 16px;
    background-color: #034859;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    border-radius: 50px;
  }

  #loginForm p {
    display: block;
    text-align: right;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
  }

  #loginForm .link {
    font-family: "Work Sans", sans-serif;
    color: #fff;
    margin: 20px 0 0 0;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  #loginForm .link a {
    color: #fff;
    text-decoration: underline;
    font-family: "Work Sans", sans-serif;
  }

  .bold-margin {
    display: block;
    color: #fff;
  }

  #loginForm input[type="text"],
  #loginForm input[type="email"],
  #loginForm input[type="password"] {
    font-family: "Work Sans", sans-serif;
    display: block;
    border: 1px solid #fff;
    box-sizing: border-box;
    margin: 0 0 10px 0;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  #loginForm input[type="checkbox"] {
    float: left;
    width: 0;
    letter-spacing: 0.5px;
  }

  #loginForm button[type="submit"] {
    display: block;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    width: 100%;
    border: none;
    box-sizing: border-box;
    background-color: #034859;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
  }

  #loginForm button[type="submit"]:hover {
    border: none;
    transform: scale(0.95);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    color: #fff;
    background: #05121d;
  }

  button[type="reset"] {
    display: block;
    background: #103c5e;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600 !important;
  }

  .boxed {
    border-radius: 8px;
    display: block;
    overflow: hidden;
    margin: 0px 30px 30px 30px;
  }

  .boxed:hover {
  }

  #loginForm h2 {
    font-family: "PragBold", sans-serif;
    font-weight: 300;
    text-align: center;
    margin: 25px 0;
    font-size: 16px;
    color: #fff;
  }

  #loginForm h3 {
    letter-spacing: 1px;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
    font-size: 16px;
    color: #ea4324;
  }

  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #83cce3;
  }

  #submitBtn {
    background-color: #83cce3;
    width: 200px;
    border-radius: 50px;
    float: right;
    transition: 0.5s ease;
  }

  #submitBtn:hover {
    transform: scale(0.95);
    transition: all 0.3s ease 0s;
    cursor: pointer;
  }

  /* LOGIN FORM ENDS HERE */
}

@media screen and (min-width: 321px) and (max-width: 520px) {
  /* LOGIN FORM STARTS HERE */
  .styled-lebel {
    color: #fff;
    line-height: 28px;
    font-family: Inter;
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .styled-lebel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    padding: 14px;
    background-color: #eee;
    border-radius: 4px;
  }

  .styled-lebel:hover input ~ .checkmark {
    background-color: #ccc;
  }

  .styled-lebel input:checked ~ .checkmark {
    background-color: #103c5e;
  }

  /* Show the checkmark when checked */
  .styled-lebel input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .styled-lebel .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .loginForm-container {
    display: block;
    overflow: hidden;
    background: transparent linear-gradient(290deg, #1a9646 0, #0f50a0 100%) 0 0
      no-repeat padding-box;
    border-radius: 8px;
    margin: 40px auto 80px auto;
  }

  #loginForm {
    background: transparent linear-gradient(290deg, #1a9646 0, #0f50a0 100%) 0 0
      no-repeat padding-box;
    font-family: "Work Sans", sans-serif;
    padding-bottom: 100px;
    color: #83cce3;
  }

  #loginForm error {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    text-align: center;
    color: #fff;
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
  }

  #loginForm img {
    display: block;
    width: 20%;
    padding: 16px;
    background-color: #034859;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    border-radius: 50px;
  }

  #loginForm p {
    display: block;
    text-align: right;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
  }

  #loginForm .link {
    font-family: "Work Sans", sans-serif;
    color: #fff;
    margin: 20px 0 0 0;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  #loginForm .link a {
    color: #fff;
    text-decoration: underline;
    font-family: "Work Sans", sans-serif;
  }

  .bold-margin {
    display: block;
    color: #fff;
  }

  #loginForm input[type="text"],
  #loginForm input[type="password"] {
    font-family: "Work Sans", sans-serif;
    display: block;
    border: 1px solid #fff;
    box-sizing: border-box;
    margin: 0 auto 10px auto;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  #loginForm input[type="checkbox"] {
    float: left;
    width: 0;
    letter-spacing: 0.5px;
  }

  #loginForm button[type="submit"] {
    display: block;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    width: 100%;
    margin: auto;
    border: none;
    box-sizing: border-box;
    background-color: #034859;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    letter-spacing: 0.5px;
    cursor: pointer;
  }

  #loginForm button[type="submit"]:hover {
    border: none;
    transform: scale(0.95);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    color: #fff;
    background: #05121d;
  }

  button[type="reset"] {
    display: block;
    background: #103c5e;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600 !important;
  }

  .boxed {
    border-radius: 8px;
    display: block;
    overflow: hidden;
    margin: 0px 30px 30px 30px;
  }

  .boxed:hover {
  }

  #loginForm h2 {
    font-family: "PragBold", sans-serif;
    margin: 30px 0 16px 0;
    font-weight: 300;
    text-align: center;
    font-size: 16px;
    color: #fff;
  }

  #loginForm h3 {
    letter-spacing: 1px;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
    font-size: 16px;
    color: #ea4324;
  }

  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #83cce3;
  }

  #submitBtn {
    background-color: #83cce3;
    width: 200px;
    border-radius: 50px;
    float: right;
    transition: 0.5s ease;
  }

  #submitBtn:hover {
    transform: scale(0.95);
    transition: all 0.3s ease 0s;
    cursor: pointer;
  }

  /* LOGIN FORM ENDS HERE */
}

@media screen and (min-width: 521px) and (max-width: 768px) {
  /* LOGIN FORM STARTS HERE */
  .styled-lebel {
    color: #fff;
    line-height: 28px;
    font-family: Inter;
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .styled-lebel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    padding: 14px;
    background-color: #eee;
    border-radius: 4px;
  }

  .styled-lebel:hover input ~ .checkmark {
    background-color: #ccc;
  }

  .styled-lebel input:checked ~ .checkmark {
    background-color: #103c5e;
  }

  /* Show the checkmark when checked */
  .styled-lebel input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .styled-lebel .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .loginForm-container {
    display: block;
    overflow: hidden;
    width: 500px;
    background: #012933;
    border-radius: 8px;
    margin: 40px auto 80px auto;
  }

  #loginForm {
    background: transparent linear-gradient(290deg, #1a9646 0, #0f50a0 100%) 0 0
      no-repeat padding-box;
    font-family: "Work Sans", sans-serif;
    padding-bottom: 100px;
    color: #83cce3;
  }

  #loginForm error {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    text-align: center;
    color: #fff;
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
  }

  #loginForm img {
    display: block;
    width: 20%;
    padding: 16px;
    background-color: #034859;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    border-radius: 50px;
  }

  #loginForm p {
    display: block;
    text-align: right;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
  }

  #loginForm .link {
    font-family: "Work Sans", sans-serif;
    color: #fff;
    margin: 20px 0 40px 0;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  #loginForm .link a {
    color: #fff;
    text-decoration: underline;
    font-family: "Work Sans", sans-serif;
  }

  .bold-margin {
    display: block;
    color: #fff;
  }

  #loginForm input[type="text"],
  #loginForm input[type="password"] {
    font-family: "Work Sans", sans-serif;
    display: block;
    border: 1px solid #fff;
    box-sizing: border-box;
    margin: 0 auto 10px auto;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  #loginForm input[type="checkbox"] {
    float: left;
    width: 0;
    letter-spacing: 0.5px;
  }

  #loginForm button[type="submit"] {
    display: block;
    font-family: "PragBold", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    width: 100%;
    margin: 0 auto;
    border: none;
    box-sizing: border-box;
    background-color: #034859;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    letter-spacing: 0.1px;
    cursor: pointer;
  }

  #loginForm button[type="submit"]:hover {
    border: none;
    transform: scale(0.95);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    color: #fff;
    background: #05121d;
  }

  button[type="reset"] {
    display: block;
    background: #103c5e;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600 !important;
  }

  .boxed {
    border-radius: 8px;
    display: block;
    overflow: hidden;
    width: 60%;
    margin: 0px 20% 30px 20%;
  }

  .boxed:hover {
  }

  #loginForm h2 {
    font-family: "PragBold", sans-serif;
    margin: 60px 0 16px 0;
    font-weight: 300;
    text-align: center;
    font-size: 16px;
    color: #fff;
  }

  #loginForm h3 {
    letter-spacing: 1px;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
    font-size: 16px;
    color: #ea4324;
  }

  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #83cce3;
  }

  #submitBtn {
    background-color: #83cce3;
    width: 200px;
    border-radius: 50px;
    float: right;
    transition: 0.5s ease;
  }

  #submitBtn:hover {
    transform: scale(0.95);
    transition: all 0.3s ease 0s;
    cursor: pointer;
  }

  /* LOGIN FORM ENDS HERE */
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  /* LOGIN FORM STARTS HERE */
  .styled-lebel {
    color: #fff;
    line-height: 28px;
    font-family: Inter;
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .styled-lebel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    padding: 14px;
    background-color: #eee;
    border-radius: 4px;
  }

  .styled-lebel:hover input ~ .checkmark {
    background-color: #ccc;
  }

  .styled-lebel input:checked ~ .checkmark {
    background-color: #103c5e;
  }

  /* Show the checkmark when checked */
  .styled-lebel input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .styled-lebel .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .loginForm-container {
    display: block;
    overflow: hidden;
    width: 300px;
    background: #012933;
    border-radius: 8px;
    margin: 40px auto 80px auto;
  }

  #loginForm {
    background: transparent linear-gradient(290deg, #1a9646 0, #0f50a0 100%) 0 0
      no-repeat padding-box;
    font-family: "Work Sans", sans-serif;
    padding-bottom: 100px;
    color: #83cce3;
  }

  #loginForm error {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    text-align: center;
    color: #fff;
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
  }

  #loginForm img {
    display: block;
    width: 20%;
    padding: 16px;
    background-color: #034859;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    border-radius: 50px;
  }

  #loginForm p {
    display: block;
    text-align: right;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
  }

  #loginForm .link {
    font-family: "Work Sans", sans-serif;
    color: #fff;
    margin: 20px 0 0 0;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  #loginForm .link a {
    color: #fff;
    text-decoration: underline;
    font-family: "Work Sans", sans-serif;
  }

  .bold-margin {
    display: block;
    color: #fff;
  }

  #loginForm input[type="text"],
  #loginForm input[type="password"] {
    font-family: "Work Sans", sans-serif;
    display: block;
    border: 1px solid #fff;
    box-sizing: border-box;
    margin: 0 auto 10px auto;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  #loginForm input[type="checkbox"] {
    float: left;
    width: 0;
    letter-spacing: 0.5px;
  }

  #loginForm button[type="submit"] {
    display: block;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    width: 50%;
    margin: 0 auto;
    border: none;
    box-sizing: border-box;
    background-color: #034859;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
  }

  #loginForm button[type="submit"]:hover {
    border: none;
    transform: scale(0.95);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    color: #fff;
    background: #05121d;
  }

  button[type="reset"] {
    display: block;
    background: #103c5e;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600 !important;
  }

  .boxed {
    border-radius: 8px;
    display: block;
    overflow: hidden;
    margin: 0px 30px 30px 30px;
  }

  .boxed:hover {
  }

  #loginForm h2 {
    font-family: "PragBold", sans-serif;
    font-weight: 300;
    text-align: center;
    margin: 25px 0;
    font-size: 20px;
    color: #fff;
  }

  #loginForm h3 {
    letter-spacing: 1px;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
    font-size: 16px;
    color: #ea4324;
  }

  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #83cce3;
  }

  #submitBtn {
    background-color: #83cce3;
    width: 200px;
    border-radius: 50px;
    float: right;
    transition: 0.5s ease;
  }

  #submitBtn:hover {
    transform: scale(0.95);
    transition: all 0.3s ease 0s;
    cursor: pointer;
  }

  /* LOGIN FORM ENDS HERE */
}

@media (min-width: 993px) and (max-width: 1600px) {
  /* LOGIN FORM STARTS HERE */
  .styled-lebel {
    color: #fff;
    line-height: 28px;
    font-family: Inter;
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .styled-lebel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    padding: 14px;
    background-color: #eee;
    border-radius: 4px;
  }

  .styled-lebel:hover input ~ .checkmark {
    background-color: #ccc;
  }

  .styled-lebel input:checked ~ .checkmark {
    background-color: #103c5e;
  }

  /* Show the checkmark when checked */
  .styled-lebel input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .styled-lebel .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .loginForm-container {
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 8px;
    margin: 0;
    padding: 50px 200px;
  }

  #loginForm {
    background: transparent linear-gradient(290deg, #1a9646 0, #0f50a0 100%) 0 0
      no-repeat padding-box;
    font-family: "Work Sans", sans-serif;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
    width: 60%;
  }

  #loginForm error {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
    color: #fff;
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
  }

  #loginForm img {
    display: none;
    width: 15%;
    padding: 16px;
    background-color: #034859;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    border-radius: 100px;
  }

  #loginForm p {
    display: block;
    text-align: right;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
  }

  #loginForm .link {
    font-family: "Work Sans", sans-serif;
    color: #fff;
    margin: 20px 0 40px 0;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  #loginForm .link a {
    color: #fff;
    text-decoration: underline;
  }

  .bold-margin {
    display: block;
    color: #fff;
  }

  #loginForm input[type="text"],
  #loginForm input[type="password"] {
    font-family: "Work Sans", sans-serif;
    background-color: #fff;
    display: block;
    box-sizing: border-box;
    margin: 10px auto 10px auto;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    border: none;
    font-size: 16px;
  }

  #loginForm input[type="checkbox"] {
    float: left;
    width: 0;
    letter-spacing: 0.5px;
  }

  button[type="submit"] {
    background: #05121d;
    border-radius: 8px;
    margin: 10px 0 0 0;
  }

  button[type="submit"]:hover {
    transform: scale(0.95);
    transition: all 0.3s ease 0s;
    cursor: pointer;
  }

  button[type="reset"] {
    display: block;
    background: #103c5e;
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 600 !important;
  }

  .boxed {
    padding: 0;
    border-radius: 8px;
    display: block;
    overflow: hidden;
    width: 70%;
    margin: auto;
  }

  .boxed:hover {
  }

  #loginForm h2 {
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    text-align: center;
    margin: 50px 0 25px 0;
    font-size: 28px;
    color: #fff;
  }

  #loginForm h3 {
    letter-spacing: 1px;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
    font-size: 16px;
    color: #ea4324;
  }

  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #ffdddd;
  }

  #submitBtn {
    background: #05121d;
    width: 200px;
    border-radius: 8px;
    float: right;
    transition: 0.5s ease;
  }

  #submitBtn:hover {
    transform: scale(0.95);
    transition: all 0.3s ease 0s;
    cursor: pointer;
  }

  /* LOGIN FORM ENDS HERE */
}
