.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: rgb(255, 255, 255);
}

.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;
    cursor: pointer;
}

.submit:hover{
    background-color: #5395BF;
}  
  .radio-container {
    font-size: 24px;
    padding: 8px;
  }
  
  input[type="radio"] {
    display: none;
  }
  
  label {
    position: relative;
    cursor: pointer;
    color: #141414;
    font-family: "Noto Sans";
    font-weight: 600;
    font-size: medium;
    margin-bottom: 5px;
    padding-right: 32px;
  }
  
  label::before {
    content: "";
    border: 2px solid #222;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: -5px 15px;
    margin-left: 0;
    border-radius: 50%;
  }
  
  label::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(34, 34, 34, 0);
    left: 4px;
    top: 8px;
    margin: -5px 15px;
    margin-left: 0;
    border-radius: 50%;
  
    transition: all 0.4s;
  }
  
  input[type="radio"]:checked + label::after {
    background:  #0090EC;
  }

.select{
    width:90% ;
    height: 37px;
    background: rgb(255, 255, 255);
    color: #000000;
    border-radius: 0.5em;
    padding: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Noto Sans";
    border-style: none;
}
.select:hover{
    background: aliceblue;
}

@media screen and (max-width: 700px) {
    
    .form-title{
        font-size: 20px;
    }
    .input-box{
        width: 100%;
        margin-left:6%;
        font-size: 14px;
    }
    .details{
        font-size: 14px;
    }
}
