

input[type=email],input[type=password] ,input[type=text],input,select,textarea{
    width: 70%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
input,label{
    /*height: 40px;*/
}
input[type=checkbox]
{
    height: 20px;
    margin-top: 18px;
    margin-bottom: 18px;
}
p{
    text-align: center;
}
input[type=submit],button {
    background-color: #1f2320;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

input[type=submit]:hover,button:hover {
    opacity: 0.8;
}


.password{
    font-size: 12px;
}

.register {
    background-color: white;
    padding: 20px;
    margin: 20px auto;
    width: 40%;
    min-width: 400px;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    span.password {
        display: block;
        float: none;
    }
}

* {
    box-sizing: border-box;
}



label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}




label,.leftData {
    float: left;
    width: 25%;
    margin-top: 6px;
}

input,select,.rightData,textarea{
    float: right;
    width: 70%;
    margin-top: 6px;
    padding:12px 20px;
    display: inline-block;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
.nonInteractiveInput{
    border: #dedede solid 1px;
   background-color: #d2d2d2;
    position:relative;
    padding: 12px 20px;
    box-sizing: border-box;
    height: 40px;
    font-family: sans-serif;
    font-size: 13px;
    color: #4f4f4f;;
}



/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    label,.leftData,.rightData, input,button, input[type=submit],input[type=text],input[type=email],input[type=password] {
        width: 100%;
        margin-top: 0;

    }
    .register{
        padding: 5px;
        margin: 5px auto;
        width: 100%;
        min-width: 200px;
    }
    .container
    {
        width:100%;

    }
    body{
        padding:0;
    }

}