html {
	background: url('https://images.alphacoders.com/102/1024095.jpg') no-repeat center center fixed;
	background-size: cover;
}
h2{
    text-align:center;
    font-size:30px;
    padding:0.5rem;
    color:white;
}
.container{

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
  
}

.login-form{
    height:360px;
    width: 300px;
    border-radius: 10px;
    display:flex;
    flex-direction: column;
    align-items:center;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0,0, 1);
    color: rgb(20, 20, 20);
    padding-top: 60px;
}

.login h2{
    letter-spacing:1px;
}
input{
    color:#fff;
    width: 200px;
    margin-top: 20px;
    background: transparent;
    outline: none;
    padding:10px;
    font-size: 15px;
    border-radius: 30px;
    box-shadow: 0 0 4px rgb(0, 0, 0);
    transition:all 0.5s ease;
}
.btn{
    
  padding: 5px 20px;
  margin-top: 30px;
  background: transparent;
  border-radius:30px;
  box-shadow: 0 0 4px rgb(0, 0, 0);
  cursor: pointer; 
} 
  
input[placeholder]:focus{
    color: rgb(255, 255, 255);
    font-size: 20px;
}

input:focus,
.btn:focus{
    box-shadow: 0 0 10px rgb(255, 255, 255);
}
.btn1{
    padding:20px;
    transition-property: all;
    transition-duration:0.4s;
    transition-timing-function: ease-out;
}
.btn1:hover{
  font-size: 1.3em;
}