﻿        body {
            margin: 0px;
            padding: 0;
        }

            body:before {
                content: '';
                position: fixed;
                width: 100vw;
                height: 100vh;
                background-image: url('../../images/clogin2.jpg');
                background-position: center center;
                background-repeat: no-repeat;
                background-attachment: fixed;
                background-size: cover;
            }

        .contact-form {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 400px;
            height: 96%;
            padding: 140px 40px;
            box-sizing: border-box;
            background: rgb(106, 172, 204,0.9);
        }

        .avatar {
            position: absolute;
            width: 400px;
            height: 80px;
            border-radius: 0%;
            overflow: hidden;
            top: calc(20px/3);
            left: calc(20% - 80px);
        }
         .error {
            margin: 0;
            padding: 0;
            font-weight: bold;
            color: #f10909;
        }
        .contact-form h2 {
            margin: 0;
            padding: 0 0 20px;
            color: #fff;
            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: 15px;
        }

            .contact-form input[type="text"],
            .contact-form input[type="password"] {
                border: none;
                border-bottom: 1px solid #fff;
                background: transparent;
                outline: none;
                height: 35px;
                color: #fff;
                font-size: 16px;
            }

            .contact-form input[type="submit"] {
                height: 35px;
                color: #fff;
                font-size: 15px;
                background: green;
                cursor: pointer;
                border-radius: 25px;
                border: none;
                outline: none;
                margin-top: 5px;
            }

        .contact-form a {
            color: #fff;
            font-size: 14px;
            font-weight: bold;
            text-decoration: none;
        }

        input[type="checkbox"] {
            width: 5%;
            margin-left: 0px;
        }
