﻿<style >
/*set border to the form*/
form {
    border: 3px solid #f1f1f1;
}
/*assign full width inputs*/

input[type=text],
input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
/*set a style for the buttons*/

button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}
    /* set a hover effect for the button*/

    button:hover {
        opacity: 0.8;
    }
/*set extra style for the cancel button*/

.cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
}
/*centre the display image inside the container*/

.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
}
/*set image properties*/

img.avatar {
    width: 40%;
    border-radius: 50%;
}
/*set padding to the container*/

.container {
    padding: 16px;
}
/*set the forgot password text*/

span.psw {
    float: right;
    padding-top: 16px;
}


.positionError {
    position: relative;
}

.positionErrorMsg {
    position: absolute;
    right: 18px;
    top: 15px;
}


/*set styles for span and cancel button on small screens*/
@media screen and (max-width: 300px) {
    span .psw {
        display: block;
        float: none;
    }

    .cancelbtn {
        width: 100%;
    }

    

}


@media screen and (min-width: 280px) {

    .navbar-toggle{
        float:left;
        width:40px;
    }

    .container-fluid {
        margin: 16% auto 0 auto;
        width: 70%;
    }

}


@media screen and (min-width: 768px) {

    .container-fluid, .container-fluid-login {
        margin: 11% auto 0 auto;
        width: 24%;
    }

    .col-sm-3 {
        width: 100%;
    }

}

@media screen and (min-width: 1024px) {
    
}

    </style >
