﻿* {
    margin:0;
    padding:0;
}

.bg-img {
    background-image: url(login/img/signup.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    padding: 20px;
    filter: blur(2px) contrast(0.5);
}

.signup {
    width: 380px;
    margin: 150px auto 0;
    background: #fff;
    padding: 40px;
    box-sizing: border-box;
    height: auto;
    position: absolute;
    top: 36%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 10px rgba(150,150,150,0.5);
}

.title{
    position:absolute;
    top:-10px;
    background:#01c2c2;
    color:#fff;
    padding:10px 20px;
    font-weight:700;
    font-style:italic;
    text-transform:uppercase;
    letter-spacing:1px;
}

    .title:before {
        content: "";
        position: absolute;
        top: 0;
        left: -10px;
        border-left: 5px solid transparent;
        border-right: 5px solid #01a9a9;
        border-top: 5px solid transparent;
        border-bottom: 5px solid #01a9a9;
    }

    .sub-container{
        padding-top:30px;
    }

    .form{
        width:100%;
        margin-bottom:10px;
    }

    .form .label{
        text-transform:capitalize;
        font-weight:700;
    }

    .form .input{
        margin:5px 0 0;
        width:100%;
        padding:10px;
        box-sizing:border-box;
        border: 2px solid #01c2c2;
        color:#3e3e40;
        font-size:12px;
        outline:none;
        border-radius:3px;
    }

.btn{
    width:100%;
    height:40px;
    text-align:center;
    line-height:40px;
    text-transform:uppercase;
    color:#fff;
    font-weight:bold;
    letter-spacing:1px;
    cursor:pointer;
    margin-top:20px;
    border-radius:3px;
}








