@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.background {
    width: 60%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#bgImage{
    width:100%;
    height:auto;
}

.image-indicators {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  margin-top: 10px;
  z-index: 1; 
}

.indicator {
  width: 10px;
  height: 10px;
  background-color: #FFFFFF; 
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator.active {
  background-color: #f58635;
}

.login-collumn{
    position: relative;
    width: 40%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 52%;
    margin-left: 22%;
    margin-bottom: 10%;
}

.form-box.login{
    width: 65%;
}

.input-box{
    position: relative;
    width: 100%;
    height: 45px;
    margin: 20px 0;
}

.input-box label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1em;
    color: #102747;
    font-weight: 500;
    pointer-events: none;
}


.input-box input{
    width: 100%;
    height: 100%;
    border: 2px solid #D3D3D3;
    border-radius: 8px;
    outline: none;
    font-size: .9em;
    color: #102747;
    font-weight: 550;
    padding: 0 35px 0 5px;
}

.input-box input::placeholder{
    font-weight: 300;
    font-size: .7em;
}

.input-box .icon{
    display: inline;
    position: absolute;
    right: 11px;
    font-size: 1.2em;
    color: #0F278B;
    line-height: 54px;
}

.login-register{
    font-size: .9em;
    color: #CBCBCB;
    text-align: center;
    font-weight: 500;
    margin: 25px 0 10px;
}

.login-register p a{
    color: #0F278B;
    text-decoration: none;
    font-weight: 400;
}

.login-register p a:hover{
    text-decoration: underline;
}


.btn{
    margin-left: 20%;
    margin-top: 20px;
    width: 60%;
    height: 45px;
    background: #F58635;
    border: none;
    outline: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1em;
    color: #FFFFFF;
    font-weight: 500;
    transition: .5s;
}

.btn:hover{
    background: #ff6a00;
}

.icon.eye{
    cursor: pointer;
    position: absolute;
    right: 9px;
    font-size: 1.2em;
    color: #0F278B;
    top: 49%;
    transform: translateY(-50%);
    display: inline-flex; 
    align-items: center; 
}

.icon.eye-open {
    display: none;
    margin-right: -12px; 
}