body{
  margin: 0;
  padding: 0;
  background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
  url("../college1.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment:fixed;
  overflow-y:auto;
  height: auto;
}
.container{
  justify-content: center;
  align-items: center;
  display: flex;
  padding:50px 0;
  box-sizing: border-box;
  margin-top:50px
  
  
}
.formholder{
  border:none;
  width:90%;
  max-width: 600px;
  backdrop-filter:blur(10px);
  background-color: rgba(255,255,255,0.2);
  border-radius: 10px;
  
}
.formholder img{
  width:80px;
  display: block;
  margin: 20px auto;
}
h2{
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
  
}
.student,.Guardians,.UploadFiles{
  background-color: red;
  border: none;
  border-radius:10px;
  background-color:rgba(255,255,255,0.2);
  padding: 20px;
  margin: 20px;
}
h3{
  color:#fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
  text-align: center;
}
input,select,textarea{
  width:100%;
  padding:20px;
  margin-bottom: 10px;
  border-radius: 20px;
  border:none;
  font-size: 16px;
  box-shadow: 1px 1px 50px rgba(0,0,0,0.4) ;
}
button{
  width:100%;
  padding:20px;
  margin-bottom: 50px;
  border-radius: 20px;
  border:none;
  font-size: 16px;
  background-color:#fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
  font-size:20px;
  box-shadow: 1px 1px 50px rgba(0,0,0,0.4) ;
  
}
label{
  margin-left: 15px;
  font-weight: bold;
  color:white;
}
.file-upload{
  text-align: center;
  margin:20px 0;
}
.birth{
  padding:30px;
  display: inline-block;
  border-radius: 10px;
  transition: background 0.3s ease;
  background-color:rgba(255,255,255,1);
  color:#000;
  box-shadow: 1px 1px 50px rgba(0,0,0,0.4) ;
}
.fa-cloud-arrow-up{
  display: block;
  font-size:50px;
  color:#4AC1FF;
}
input[type="file"]{
  display: none;
}
.filename{
  display: block;
  margin-top: 10px;
  color:white;
  text-align: center;
  font-size:15px;
  
  
}
/*button:hover{
  border-style:solid;
  border-width:7px;
  border-color:black
}*/
@keyframes slidein{
  from{transform: translateY(-50%)}
   to{transform: translateY(0%)}
}
.formholder{
  animation:slidein 3s ease-in-out;
}
#loader{
  font-size: 20px;
}