@import url('fonts.css');
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}

.text-center {
  text-align: center;
}

.notice {
  background-color: #F0FAFF;
  border: 1px solid #5FD5FB;
  border-left: 4px solid #5FD5FB;
  padding: 18px 20px;
  border-radius: 4px;
  text-align: left;
}

.notice.orange {
  background-color: #FFF5ED;
  border-color: #FF5C16;
}

.notice.top {
  border: 1px solid #5FD5FB;
  border-top: 4px solid #5FD5FB;
}

.notice .icon-row {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.notice h5 {
  display: none;
}

.notice * {
  text-align: left;
}

button,
.btn
{
  display: block;
  text-decoration: none;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  padding-block: 16px;
  background-color: #5FD5FB;
  margin-top: 0;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  text-decoration: none !important;
  padding-inline: 20px;
  text-align: center;
}

.btn-primary{
  background-color: #00d0ff;
  color: black;
}

.btn-transparent{
    background: transparent;
    color: #000;
}

button,
.btn-primary {
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
  will-change: transform, opacity;
}

button:hover,
.btn-primary:hover {
  opacity: 0.8;
  transform: scale(0.98);
}

button.white,
.btn-primary.white {
  background-color: white;
  color: #21242b;
  border: 1px solid #CAD1D7;
}

button.black,
.btn-primary.black {
  background-color: #21242b;
  color: white;
  border: 1px solid #21242b;
}

.button.disabled,
.btn.disabled
{
background-color: #aaa !important;
color: #666 !important;
cursor: not-allowed !important;
}

body.entry {
  color: #21242B;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #21242b;
  background-image: url("/assets/img/bg.png");
  background-position: center center; 
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

body.entry * {
  box-sizing: border-box;
}

body.entry .max-440 {
  max-width: 440px !important;
}

body.entry.create {
  padding-block: 30px;
  height: 100%;
}

body.entry .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-top: 30px;
}

@media (max-width: 999px) {
  body.entry .two-col {
    grid-template-columns: 1fr;
  }
}
body.entry .two-col label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

body.entry .two-col div:has([type=submit]),
body.entry .two-col .long {
  grid-column-start: 1;
  grid-column-end: 3;
}

body.entry .create-heading,
body.entry .login-heading,
body.entry h1,
body.entry h2,
body.entry h3,
body.entry h4,
body.entry h5,
body.entry h6 {
  font-family: "BricolageGrotesqueCondensed-ExtraBold", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-variation-settings: "wdth" 75;
  text-align: center;
  font-size: 36px;
  text-transform: uppercase;
}

body.entry .form-group label {
  padding-bottom: 5px;
  display: inline-block;
  font-weight: bold;
}

body.entry input[type=text],
body.entry input[type=email],
body.entry input[type=number],
body.entry input[type=password],
body.entry input[type=tel],
body.entry select {
  border: 1px solid #8694b1;
  color: #6b7280;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 4px;
  display: block;
  width: 100%;
}

body.entry input[type=text]::placeholder,
body.entry input[type=email]::placeholder,
body.entry input[type=number]::placeholder,
body.entry input[type=password]::placeholder,
body.entry input[type=tel]::placeholder,
body.entry select::placeholder {
  color: #6b7280;
}

body.entry .checkbox-group > div:has(> input) {
  display: flex;
  align-items: center;
  flex-flow: row;
  gap: 5px;
}
body.entry .checkbox-group a {
  color: #21242b;
  text-decoration: underline;
}
body.entry input[type=checkbox],
body.entry input[type=radio] {
  width: 20px;
  height: 20px;
  border: 1px solid #8694b1;
  appearance: none;
  background-color: white;
  cursor: pointer;
  border-radius: 4px;
}

body.entry input[type=checkbox]:checked,
body.entry input[type=radio]:checked {
  background-color: #5FD5FB;
  border-color: #5FD5FB;
}

body.entry input[type=radio] {
  border-radius: 100px;
  margin-right: 8px;
}

body.entry input[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='27' viewBox='0 0 26 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' transform='translate(3 3.53809)' fill='white'/%3E%3Ccircle cx='13' cy='13.5381' r='11.5' fill='white' stroke='%2338CCF8' stroke-width='3'/%3E%3Ccircle cx='13' cy='13.5381' r='5' fill='%2321242B'/%3E%3C/svg%3E%0A");
  background-size: cover;
}

body.entry .radio-row {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  margin-bottom: 15px;
}

body.entry button {
  width: 100%;
  padding: 10px;
  background-color: #00d0ff;
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  padding-block: 16px;
  background-color: #5FD5FB;
  margin-top: 15px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

body.entry button.black,
body.entry a.black
{
  background-color: #21242b;
  color: white;
  text-decoration: none;
}

body.entry button.black * {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

body.entry .container {
  border-radius: 20px;
  max-width: 880px;
  overflow: hidden;
}

body.entry .container .left-column {
  border: 0;
}

body.entry .container .right-column {
  background-color: #5FD5FB;
  display: grid;
  align-items: center;
  text-align: center;
  justify-items: center;
}

body.entry .container .right-column img {
  text-align: center;
}

.clearfix{
    clear:both;
    height: 0;
    width: 0;
}

@media (max-width: 768px) {
  body.entry .container {
    flex-flow: column;
  }
  body.entry .container > div {
    width: 100%;
  }
}

.row.top {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  gap: 15px;
}
.row.top .logo {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  gap: 15px;
}
.row.top .logo p {
  margin: 0;
  font-size: 17px;
}
.row.top .prices {
  text-align: right;
}
.row.top .prices p {
  margin: 0;
}
.row.top .prices .price-main {
  font-size: 18px;
  font-weight: 600;
}
.row.top .prices .quote-terms-con * {
  font-size: 14px;
}

.row.last h2 {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
}
.row.last ul li {
  margin-bottom: 20px;
  font-size: 16px;
}

body .white-block,
body .black-block {
  background: white;
  border-top: 3px solid #FF5C16;
  padding: 34px 24px 34px 20px;
  margin-inline: auto;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
body .white-block > .horizontal,
body .black-block > .horizontal {
  display: flex;
  flex-flow: row;
  align-items: center;
}
@media (max-width: 1300px) {
  body .white-block > .horizontal,
body .black-block > .horizontal {
    flex-wrap: wrap;
  }
}
body .white-block > .horizontal a,
body .white-block > .horizontal button,
body .black-block > .horizontal a,
body .black-block > .horizontal button {
  margin-left: auto;
}
@media (max-width: 768px) {
  body .white-block .image-frame img,
body .black-block .image-frame img {
    width: 88px;
  }
}
body .white-block .count,
body .black-block .count {
  background: #21242b;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 100px;
  display: inline-block;
  text-align: center;
  line-height: 1.4;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  top: -2px;
}
body .white-block .topline,
body .black-block .topline {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}
body .white-block .bottomline,
body .black-block .bottomline {
  font-size: 14px;
}
body .white-block a,
body .black-block a {
  color: #21242b;
  text-decoration: none;
}
@media (max-width: 1300px) {
  body .white-block .btn-primary,
body .black-block .btn-primary {
    width: 100%;
    margin-top: 20px;
  }
}
body .white-block.alt,
body .black-block.alt {
  border-top: 3px solid #21242b;
}
body .white-block.thirty-spacing,
body .black-block.thirty-spacing {
  padding: 30px;
}
body .white-block.third,
body .black-block.third {
  flex-basis: calc(33.33% - 20px);
}
@media (max-width: 768px) {
  body .white-block.third,
body .black-block.third {
    flex-basis: 100%;
  }
}
body .white-block.center *,
body .black-block.center * {
  text-align: center;
}
body .white-block .title,
body .black-block .title {
  font-size: 20px;
  margin-bottom: 10px;
}
body .white-block .desc,
body .black-block .desc {
  color: #5D6C7D;
  font-size: 14px;
  margin: 0;
}

.alert{
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
}

.alert-hidden{
  display: none;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
  border-left: 3px solid #a94442;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
  border-left: 3px solid #8a6d3b;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
  border-left: 3px solid #31708f;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
  border-left: 3px solid #3c763d;
}

.input-container {
    display: flex;
    align-items: center;
    position: relative;
}

.password-toggle-icon{
  position: absolute;
  top: 16px;
  right: 11px;
  width: 20px;
  cursor: pointer;
  font-size: 20px;
}

.hide{
  display: none;
}

.show{
  display: block;
}

.showInlineBlock{
  display: inline-block;
}

.showInline{
  display: inline;
}

.showFlex{
  display: flex;
}

.entry-logo-top {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0px;
    background-color: #21242b;
}

.entry-logo-top img {
    display: block;
    margin: 0 auto;
}

.text-orange{
    color:#FF5C16;
}

/* Extra Small devices (landscape phones, 575px and below) */
@media (max-width: 575px) {
    body.entry .two-col {
        display: block;
    }

    body.entry .two-col div{
      margin-top:10px;
    }

    body.entry .two-col div:first-child{
      margin-top:0;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px){

    body.entry .two-col {
        display: block;
    }

    body.entry .two-col div{
      margin-top:10px;
    }

    body.entry .two-col div:first-child{
      margin-top:0;
    }

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px){
   body.entry .two-col {
        display: block;
    }

    body.entry .two-col div{
      margin-top:10px;
    }

    body.entry .two-col div:first-child{
      margin-top:0;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px){ 
  body.entry .two-col {
        display: grid;
  }

  body.entry .two-col div{
      margin-top:0;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399px){

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}