.montserrat-font {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
  }

.drop-shadow{
    box-shadow: 10px 12px 17px -7px rgba(0,0,0,0.44);
    -webkit-box-shadow: 10px 12px 17px -7px rgba(0,0,0,0.44);
    -moz-box-shadow: 10px 12px 17px -7px rgba(0,0,0,0.44);
}

html,body{
    position: relative; 
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    font-family: Montserrat;
    color: white;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
    /*
    background-color: #8BC6EC;
    background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
    */
    background-image: url("../imgs/background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.main-form-canvas{
    position: relative;
    margin: 10px auto auto;
    height: 90%;
    overflow: scroll;
    border-radius: 10px;
    text-align: left;
    padding: 20px;

    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.125);
    max-width: 600px;
} 

.form-title{
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 20px;
    margin-right: 100px;
}

.form-content{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}

.form-row{
  display: flex;
  flex-direction: row;
  justify-content:flex-start;
  align-items:center;
  width: 100%;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.form-field{
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items:flex-start;
  margin-right: 10px;
  min-width: 100px;
  
}

.form-content input{
    position: relative;
    font-family: Montserrat;
    font-weight: 100;
    margin-top: 10px; 
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #75757573;
    border-radius: 5px;
    width: 90%;
    font-size: 16px;
    font-weight: 300;
    background: #2423235b;
    color: #ffffff;
}

.form-content input:focus{
    outline: none;
    background: #272727;
    color: #ffffff;
    border: 1px solid #0093E9;
}

.form-content input::placeholder{
    color: gray;
    border: 1px solid rgba(143, 143, 143, 0.125);
}

.form-content select{
    font-family: Montserrat;
    font-weight: 100;
    margin-top: 10px; 
    padding: 10px;
    border: 1px solid #75757573;
    border-radius: 5px;
    width: 70px;
    height: 43px;
    font-size: 16px;
    background: #2423235b;
    color: #ffffff;
}

.image-canvas{
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
    padding: 10px;
    border-radius: 15px;
    background-color:rgba(255, 255, 255, 0.125);
    text-align: center;
}

.form-button{
    margin: 10px;
    padding: 10px;
    border: none;
    border-radius: 15px;
    background-color:rgba(255, 255, 255, 0.125);
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    height: 50px;
    min-width: 50px;
}

.form-button:hover{
    color: rgb(199, 199, 199);
    background-color:  rgba(0, 0, 0, 0.6);
    
}

.main-control{
  display: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items:center;
  width: 320px;
  margin: auto auto;
}

.main-control{
  display: none;
}

.steps{
    display: flex;
    justify-content: space-between;
    align-items:center;
    padding: 10px;
    width: 300px;
    margin: auto  auto;
    background-color:rgba(255, 255, 255, 0.125);
    border-radius: 15px;
}

.step{
    background-color:rgba(255, 255, 255, 0.125);
    text-align: center;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    color: white;
    font-weight: 600;
    inline-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    cursor: pointer;
}

.step-active {
    background: green;
}

.step-line{
    position: absolute;
    display: block;
    height: 1px;
    width: 290px;
    background-color:rgba(255, 255, 255, 0.125);
    z-index: 0;
}

.step-0 {
    display: none;
}

.step-1 {
    display: none;
}

.step-2 {
    display: none;
}

.step-3 {
    display: none;
}

.step-4 {
    display: none;
}

#LogoutButton{
    position: absolute;
    right: 10px;
    top: 10px;
    color: white;
    height: 20px !important;
    text-align: center;
}



label{
  color:white;
  font-weight: 300;
}
  
