body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body:before {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-image: url(img/download.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-filter: blur(8px);
    -moz-filter: blur(8px);
    filter: blur(8px);
}

.contact-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 350px;
    padding: 80px 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
}

.avatar {

    width: 50px;
    height: 50px;
    border-radius: 30%;
    overflow: hidden;

}

.contact-form h2 {
    margin: 0;
    padding: 0 0 20px;
    color: #1D67A3;
    text-align: center;
    text-transform: uppercase;
}

.contact-form p {
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: #fff;
}

.contact-form input {
    width: 100%;
    margin-bottom: 20px;
}

.contact-form input[type=email],
.contact-form input[type=password] {
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    outline: none;
    height: 40px;
    color: #777;
    font-size: 16px;
}

/*.contact-form input[type=submit] {*/
/*	height: 30px;*/
/*	color: #fff;*/
/*	font-size: 15px;*/
/*	background: red;*/
/*	cursor: pointer;*/
/*	border-radius: 25px;*/
/*	border: none;*/
/*	outline: none;*/
/*	margin-top: 15%;*/
/*}*/
.contact-form a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

input[type=checkbox] {
    width: 20%;
}


.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius:30px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
}

.btn-4 {
    width: 130px;
    height: 50px;
    line-height: 42px;
    font-size: 20px;
    padding: 0;
    border: none;
    background:#1D67A3;
 
}

.btn-4:hover {
    color:#1D67A3;
    background: #e0e5ec;
    box-shadow: none;
}