@font-face {
  font-family: "NeueHaasGroteskDisplayPro";
  src: url("../fonts/NeueHaasDisplay-Roman.woff2") format("woff2"),
    url("../fonts/NeueHaasDisplay-Roman.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NeueHaasGroteskDisplayPro";
  src: url("../fonts/NeueHaasDisplay-Mediu.woff2") format("woff2"),
    url("../fonts/NeueHaasDisplay-Mediu.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "NeueHaasGroteskDisplayPro";
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}
p {
  margin-bottom: 8px;
}
input:focus {
  outline: none;
  border-color: #888;
}

.SectionLogin {
  display: flex;
  height: 100vh;
}
.container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 120%;
}

.LoginPanel {
  min-width: 542px;
}

.left,
.right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.left {
  background: #fff;
}

.right {
  background: #000;
  color: #fff;
}

.left h1,
.right h1 {
  margin-bottom: 40px;
}

.left form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.left .logo {
  margin-bottom: 40px;
}

.left form input {
  margin-bottom: 24px;
  padding: 10px 10px 10px 0;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
}

.left form label {
  font-size: 14px;
  margin-bottom: 5px; color: #606060;
}
  
.left form .checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.left form .checkbox input,
.left form .checkbox label {
  margin-bottom: 0;
  margin-right: 12px;
  cursor: pointer;color: #000;
}

.Btns {
  border-radius: 8px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  height: 60px;
  line-height: 60px;
  padding: 0 6px;
  flex: 1;
  transition: transform 0.1s ease, box-shadow 0.1s ease; 
}

.Btns:active {
  transform: scale(0.98); 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
}

.Btn-dark { 
  color: #fff;
  background: #000;
}
.Btn-white {
  color: #000;
  background: #fff;
}
.Btn-border {
  border: 1px solid #fff;
  flex-basis: 138px;
  max-width: 138px;
}

.Btn-border img {
  margin-left: 4px;
}

.forgotpassword {
  font-size: 14px;
  line-height: 18px;
  text-align: right;
  color: #000;
  margin-bottom: 40px;
}
.right .logo {
  margin-bottom: 42px;
}

.leads {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 12px;
}
.right ul {
  list-style: none;
  margin-bottom: 150px;
  padding-left: 6px;
}

.right ul li {
  margin-bottom: 10px;
}

.button-div {
  display: flex;
  column-gap: 16px;
}
.logos {
    display: flex;
    column-gap: 32px;
    align-items: center;
}

.jgulogo{ max-width: 230px;} 

.tdvlogo   { max-width: 130px;} 

@media (max-width: 1158px) {
  .left,
  .right {
    flex: 1 1 100%;
    padding: 32px 20px;
  }

  .left form {
    width: 100%;
  }

  .right ul {
    text-align: left;
  }

  .right button {
    width: 90%;
    margin: 10px auto;
  }

  .Btns {
    height: 48px;
    line-height: 48px;
    max-width: 100%;
    flex-basis: inherit;
    min-width: 100%;
    width: 100%;
  }
  .right ul {
    margin-bottom: 48px;
  }

  .button-div {
    flex-direction: column;
  }


}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  .left h1,
  .right h1 {
    font-size: 36px;
    margin-bottom: 28px;
  }

  .left .logo,
  .forgotpassword,
  .left form .checkbox {
    margin-bottom: 28px;
  }
  .right ul {
    margin-bottom: 40px;
  }

  .left form input {
    font-size: 14px;
    padding: 8px 8px 8px 0;
  }

  .Btns {
    font-size: 14px;
    padding: 0 8px 0;
  }

  .LoginPanel {
    min-width: 100%;
  }
}
