:root{
  --tj-bg:#dbe7ef;
  --tj-card:#f7f7f7;
  --tj-blue:#123d66;
  --tj-blue-soft:#78c8ff;
  --tj-red:#ea2a2a;
  --tj-white:#ffffff;
  --tj-text:#274866;
}

body{
  margin:0;
  background:var(--tj-bg);
  color:var(--tj-blue);
  font-family:Arial, Helvetica, sans-serif;
}

.trampoja-auth-page{
  min-height:100vh;
  background:var(--tj-bg);
}

.trampoja-auth-top-wrap{
  width:100%;
  padding:0;
}

.trampoja-auth-top{
  max-width:1600px;
  margin:0 auto;
}

.trampoja-auth-top picture,
.trampoja-auth-top img{
  display:block;
  width:100%;
  height:auto;
}

.trampoja-auth-card-wrap{
  max-width:1200px;
  margin:-36px auto 60px auto;
  padding:0 24px;
  position:relative;
  z-index:5;
}

.trampoja-auth-card{
  max-width:540px;
  margin:0 auto;
  background:var(--tj-card);
  border:1px solid rgba(120,200,255,.55);
  border-radius:26px;
  box-shadow:0 24px 50px rgba(0,0,0,.18);
  padding:34px 34px 30px 34px;
}

.trampoja-auth-kicker{
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--tj-red);
  margin-bottom:12px;
}

.trampoja-auth-title{
  font-size:58px;
  line-height:1;
  font-weight:800;
  color:var(--tj-blue);
  margin:0 0 18px 0;
}

.trampoja-auth-text{
  color:#56738d;
  font-size:18px;
  margin:0 0 26px 0;
}

.trampoja-auth-label{
  display:block;
  font-size:16px;
  font-weight:700;
  margin:18px 0 8px 0;
  color:var(--tj-blue);
}

.trampoja-auth-input,
.trampoja-auth-select{
  width:100%;
  height:54px;
  border-radius:16px;
  border:2px solid var(--tj-blue-soft);
  background:#aeb9cb;
  color:#ffffff;
  padding:0 16px;
  font-size:16px;
  box-sizing:border-box;
  outline:none;
}

.trampoja-auth-password-wrap{
  display:flex;
  align-items:center;
  gap:10px;
}

.trampoja-auth-password-wrap .trampoja-auth-input{
  flex:1;
}

.trampoja-auth-show{
  height:42px;
  min-width:42px;
  padding:0 12px;
  border:0;
  border-radius:12px;
  background:#dce4eb;
  color:var(--tj-red);
  cursor:pointer;
  font-weight:700;
}

.trampoja-auth-check{
  display:flex;
  align-items:center;
  gap:10px;
  margin:18px 0 24px 0;
  color:var(--tj-blue);
  font-weight:700;
}

.trampoja-auth-btn{
  width:100%;
  height:56px;
  border:0;
  border-radius:16px;
  background:var(--tj-red);
  color:#fff;
  font-size:18px;
  font-weight:800;
  letter-spacing:.5px;
  cursor:pointer;
}

.trampoja-auth-footer{
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid #c8d6e2;
  text-align:center;
  color:#5c7489;
  font-size:16px;
}

.trampoja-auth-footer a{
  color:var(--tj-red);
  font-weight:800;
  text-decoration:none;
}

.trampoja-auth-alert{
  margin:0 0 18px 0;
  padding:14px 16px;
  border-radius:14px;
  font-size:15px;
}

.trampoja-auth-alert-danger{
  background:#fff0f0;
  border:1px solid #ef9a9a;
  color:#a12222;
}

.trampoja-auth-alert-success{
  background:#edfdf2;
  border:1px solid #93d8a6;
  color:#18693a;
}

.trampoja-auth-errors{
  margin:0;
  padding-left:18px;
}

@media (max-width: 900px){
  .trampoja-auth-card-wrap{
    margin:-18px auto 36px auto;
    padding:0 16px;
  }
  .trampoja-auth-card{
    padding:26px 22px 24px 22px;
    border-radius:22px;
  }
  .trampoja-auth-title{
    font-size:42px;
  }
  .trampoja-auth-text{
    font-size:16px;
  }
}

@media (max-width: 640px){
  .trampoja-auth-top{
    max-width:1080px;
  }
  .trampoja-auth-card-wrap{
    margin:-12px auto 28px auto;
  }
  .trampoja-auth-title{
    font-size:34px;
  }
  .trampoja-auth-input,
  .trampoja-auth-select{
    height:50px;
    font-size:15px;
  }
  .trampoja-auth-btn{
    height:54px;
  }
}
