body {
    background-size:100%;
    background-attachment: fixed;
    background-image: url("../images/all.jpg");
}
h2 {
    text-align: center;
    margin-bottom: 20px;
}
#container { 
	border-radius: 20px;
	width: 300px;
	height: 350px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

#loginForm {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 300px;
    margin: 50px auto 0;
    position: relative;
}
#loginForm label {
    display: block;
    margin-bottom: 5px;
}
#loginForm input {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    outline: none;
}
#loginForm label img {
    position: absolute;
    top: 66%;
    right: 15%;
    width: 24px;
    cursor: pointer;
}
#loginForm button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #6EAEDA;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}
#loginForm button:hover {
    background: #6EAEDA;
}
footer {
    background: white;
    color: #4c4f69;
    position: absolute;
    bottom: 0;
    width: 100%;

}