.container {
	width:100%;
	background-color: #A8DADC;
	height:auto;
	
}
.form-title{
    font-size: 40px;
    font-weight: bold;
    color: #0090EC;
    font-family: Oxygen;
    text-align: center;
    border-style: none none dotted;
	width:100%;
    padding-bottom: 5px;
    padding-top: 5px;
	}
	
.user-details{
	 display: flex;
	flex-wrap:wrap;
	justify-content: space-evenly;
}

.input-box{
    width: calc(80%/2 - 20px);
    margin-top: 16px;
    outline: none;
    margin-left: 14px;
    margin-right: 10px;
    /* background-color: #457B9D; */
    align-items: center;
    justify-content: center;
}

.input{
    height: 35px;
    width: 90%;
    outline: none;
    border-radius: 10px;
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 5px;
    font-size: 16px;
    border-style: none;
    font-family: "Noto Sans";
    background-color: aliceblue;
}

.input-file{
    height: 30px;
    width: 90%;
    outline: none;
    border-radius: 10px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 2px;
    padding-right: 5px;
    font-size: 16px;
    border-style: none;
    font-family: "Noto Sans";
    background-color: rgb(255, 255, 255);
}
.details{
    color: #141414;
    font-family: "Noto Sans";
    font-weight: 600;
    font-size: medium;
    margin-bottom: 5px;
	display: block;
	
}

.input:focus{
    border: 2px solid #0090EC;    
}

.input-text{
    height: 50px;
    width: 93%;
    outline: none;
    border-radius: 10px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 2px;
    padding-right: 5px;
    font-size: 16px;
    border-style: none;
    font-family: "Noto Sans";
}

input::file-selector-button{
    font-size: 14px;
    border-radius: 10px;
    background-color: aliceblue;
    border-width: 1px;
}

	.button{
    height: 45px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
}
.submit{
    height: 100%;
    width: 100%;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 10px;
    border-style: none;
    color: #FFFFFF;
    font-family: Oxygen;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0px;
    background-color: #457B9D;
    margin-top: 7px;
}

.submit:hover{
    background-color: #5395BF;
}

@media screen and (max-width: 700px) {
  .form-title{
    font-size: 20px;
  }  
  
  .input-box{
    width: 100%;
    margin-left: 5%;
    font-size: 14px;
  }

  .details{
    font-size: 14px;
  } 
}