/* webtaste custom css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


html, body {
  min-height: 100vh;
}
body {
	background: linear-gradient(297deg, #0F182C 0%, #1F2A3C 46.99%, #0B0822 99.85%);
	font-family: "Roboto", sans-serif;
}

/* Home */
.contain-title-home {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-template-home .section-full-width {
  gap: 0px;
}
.page-template-home h1 {
  font-weight: 200;
  font-size: 34px;
  line-height: normal;
}

.logo-home-provvisoria img {
  width: 440px;
}


/* reset */
.text-white {
  color: white;
}

/* Login */
.section-full-width {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
}
.box {
	width: 400px;
	padding: 20px 35px 50px 35px;
	color: white;
	border-radius: 30px;
	border: 2px solid transparent;
	/* From https://css.glass */
	background: rgba(218, 185, 185, 0.05);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(218, 185, 185, 0.07);
	background-clip: border-box, padding-box;
	background-origin: border-box, padding-box;
	backdrop-filter: blur(40px);
	position: relative;
	overflow: hidden;
}
.box > * {
	position: relative;
	z-index: 1;
}
.box label {
	color: white;
}
.box input {
	display: flex;
	padding-left: 15px;
	font-size: 16px;
	height: 40px;
	width: auto;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
	align-self: stretch;
	color: white;

	border-radius: 10px;
	border: 1px solid #677A7B;
	background: #1F293C;
}
.intro-text-contain {
	text-align: center;
}
.intro-text-contain h1 {
	text-align: center;
	font-size: 26px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.input-single {
    display: flex;
    flex-direction: column;
}
.intro-text-contain span {
	color: #D1D1D1;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.flex-contain-input {
	display: flex;
	gap: 30px;
	flex-direction: column;
	margin-top: 40px;
}
.rememberme {
	display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding: 15px 0;
}
.rememberme input {
	width: 20px;
	height: 20px;
	margin: 0;
}
.rememberme label {
	font-weight: 200;
    opacity: 0.7;
}
p { 
	font-size: 16px; 
	color: #555; 
}
.btn { 
	display: inline-block; 
	margin-top: 20px; 
	color: white; 
	padding: 12px 24px; 
	border-radius: 10px; 
	text-decoration: none; 
	font-weight: bold; 
	cursor: pointer;
	font-size: 16px;
	height:40px;
	line-height: 10px;
}
.btn-white {
	width: 100%;
  background-color: white;
  border: none;
  color: #222;
  transition: all .3s ease-in-out;
	border: 1px solid rgba(218, 185, 185, 0);
}

.loader {
  display:none;
  margin-left:10px;
  border: 2px solid #222;
  border-top:2px solid transparent;
  border-radius:50%;
  width:16px;
  height:16px;
  animation:spin 0.8s linear infinite;
}
.btn-white:hover .loader {
  border:2px solid #fff;
  border-top: 2px solid transparent;
}
.error {
    color: red;
    margin-top: 15px;
    font-size: 16px;
	text-align: center;
}
.button-div .btn-login {
	width: 100%;
	background-color: white;
	border: none;
	color: #222;
	transition: all .3s ease-in-out;
}
.btn-login:hover, .btn-white:hover {
	background-color: #141A22;
	color: white;
	border: 1px solid rgba(218, 185, 185, 0.2);
}

/* Balls in login page */
.ball-asbolute-dx {
    position: absolute;
    right: 5%;
    bottom: 7%;
}
.ball-asbolute-sx {
    position: absolute;
    left: 9%;
    top: 8%;
}

.custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 5px !important;
  border: 1px solid #677A7B;
  background: #1F293C;
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.custom-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.forgot-password {
    text-align: center;
    padding-top: 25px;
    opacity: .7;
}
.forgot-password:hover {
    opacity: 1;
}
.forgot-password a {
	color: white; 
	font-weight: 100;
}


/* Pagina di pagamento */
.modal {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        transition: bottom 0.4s ease;
        background: rgba(0, 0, 0, 0.3);
        height: 100%;
        z-index: 1000;
}
      .modal.open {
        bottom: 0;
      }
      .modal-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 30px 20px;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        max-height: 70vh;
        overflow-y: auto;
      }
      .modal .close {
        font-size: 24px;
        float: right;
        cursor: pointer;
        font-weight: bold;
        color: #aaa;
      }
.box-pagamento h1 {
	text-align: center;
	line-height: 40px;
	font-size: 28px;
}
.box-pagamento p {
	color: white;
	text-align: center;
  opacity: .75;
  font-weight: 300;
}
.dominio-name {
	text-align: center;
	font-size: 24px;
	opacity: .75;
	width: 100%;
	display: block;
}
.contain-resume {
	background-color: #141A22;
	border-radius: 10px;
	border: 1px solid rgba(218, 185, 185, 0.2);
	margin-top: 20px;
}
.contain-row {
	display: flex;
  flex-direction: row;
  gap: 10px;
	padding: 20px 0;
  margin: 0 20px;
  border-bottom: 1px solid rgba(218, 185, 185, 0.2);
  justify-content: space-between;
}
.pagamento-box {
	display: flex;
    flex-direction: column;
    gap: 10px;
	background-color: #141A22;
	border-radius: 10px;
	border: 1px solid rgba(218, 185, 185, 0.2);
	margin-top: 20px;
}
.light-text {
	color: white;
	opacity: .7;
	font-weight: 300;
}
.contain-row span {
	font-weight: 400;
    opacity: .7;
}
.pay-row {
	padding: 20px;
	display: flex;
  flex-direction: column;
  gap: 10px;
  /* justify-content: space-between; */
}
.contain-row:last-child {
    border-bottom: none;
}
/* .dati-row {
	display: flex;
	justify-content: space-between;
} */


/* payment */
#contenitore-pagamento {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 170px;
}
#contenitore-pagamento input {
	color: white !important;
}
.step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.CardField-number-fakeNumber-last4 .InputElement {
	color: white !important;
}
.InputContainer .InputElement {
    color: white !important;
}

.step.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.step.exit-left {
  transform: translateX(-100%);
  opacity: 0;
}

.titolo-pagamento {
  display: flex;
  align-items: center;
  gap: 10px;
}

.freccia-indietro {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #005eff;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

div#card-element {
    background-color: #141A22;
    border-radius: 10px;
    border: 1px solid rgba(218, 185, 185, 0.2);
    height: 40px;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.freccia-indietro:hover {
  background-color: rgba(0, 94, 255, 0.1);
}

/* Stripe Elements custom styling */
.StripeElement {
  color: white !important;
  font-size: 16px !important;
  font-family: "Roboto", sans-serif;
}

.StripeElement::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.lista-servizi {
  list-style: none;
  padding: 0;
}


/* Mobile */
@media (max-width:576px) {
  .section-full-width {
    overflow: hidden;
    padding: 0 20px 70px 20px;
    gap: 40px;
    justify-content: start;
    padding-top: 50px !important;
  }
  .box {
    width: 90%;
    padding: 20px;
  }
  .ball-asbolute-sx {
    left: 0;
  }
  .contain-row {
    display: flex;
    flex-direction: column;
  }
}