body {
  margin: 0 0;
}

@font-face {
  font-family: "Inter";
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url('../fonts/Inter-Light.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}


#page__wrapper {
  display: flex;
  font-family: "Inter";
  font-size: 16px;
  height: 100vh;
}
#left__wrapper {
  width: 45%;
  position: relative;
  background-size: cover;
  background-position: center bottom;
  background-image: url('../img/login.png');
}
.telespazio__logo__wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 40px);
  background: linear-gradient(0deg, #000000b8, transparent);
  height: 200px;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  img {
    width: 210px;
  }
}

#right__wrapper {
  width: 55%;
  background-color: #f2f5f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

#login__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 353px;
}

#marine__logo__wrapper {
  img {
    width: 114px;
  }
}

#kc-page-title {
  font-weight: 600;
  font-size: 32px;
  margin: 30px 0px;
  color: #11306d;
  text-align: center;
  letter-spacing: -0.05px;
}

#input__wrapper {
  width: 100%;
  border-radius: 10px;
  background: white;
  input {
    width: 100%;
    border-radius: 10px;
    height: 56px;
    font-size: 16px;
    text-indent: 20px;
  }
}

label {
  font-size: 14px;
  color: #738397;
  margin-block: 10px;
}

input{
  width: 100%;
  border-radius: 6px;
  height: 35px;
  font-size: 16px;
  text-indent: 10px;
  border:1px solid #cbd5e1;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05)
}

*:focus {
  outline: none;
}


#kc-form-buttons{
  input{
    border-radius: 8px;
    font-size: 16px;
    background-color: #003171;
    color: white;
    /* padding: 1.9rem 4.8rem; */
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: "Inter";
    border: none;
    box-shadow: none;
  }
}
#forgotPassword{
  width: 100%;
  display: flex;
  a{
    width: 100%;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    color: #002657 !important; 
    cursor: pointer;
    margin-top: 5px;
    text-decoration: none !important;
  }


}
#content{
  width:100%;
}
#kc-registration{
  width:100%;
  text-align: center;
  color: #99acc2;
  font-weight: 500;
  font-size: 14px;
  margin-top: 15px;
  a{
    color: #002657 !important; 
    cursor: pointer; 
    text-decoration: none !important;
  }
}
#input-error, #input-error-username{
  color: #dd0d0d;
  font-size: 14px;
  text-align: left;
  width: 100%;
}

#inputWrapper{
  margin-bottom: 20px;
}

#passwordWrapper{
  display: flex;
  input{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}

#kc-info-wrapper {
  text-align: center;
  font-size: 14px;
  color: #8b8b8b;
}

.credits {
  color: #e3e3e3;
  font-size: 10px;
  margin-bottom: 30px;
  margin-top: 10px;
  text-transform: uppercase;
}

.checkbox-input{
  display:flex;
  input{
     width:auto;
     height:auto;
  }
}

.icon-show[hidden],
.icon-hide[hidden] {
    display: none !important;
}
button[data-password-toggle] .icon-show[hidden],
button[data-password-toggle] .icon-hide[hidden] {
    display: none !important;
}
.input_group{
  display: flex;
}

.alert-warning.pf-m-warning {
    padding: 8px;
    background: #ffe8e8;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #cf1f1f;
    border: 1px solid #cf1f1f;
    margin-bottom: 16px;
}