* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    font-family: "Work Sans", sans-serif;
    box-sizing: border-box;
    background-color: #F7F7F7;
}

h3{
    text-align: center;
    margin-top: 30px;
}
img{
    text-align: center;
    padding-left: 45%;
    /* padding-right: 141px; */
    padding-top: 30px;

}
.notification{
    text-align: center;
    margin-top: 12px;
    color: red;

}
form{
    margin-top: -37px;
}
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 all buttons */

button {
    background-color: #FF5733;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

button:hover {
    opacity: 0.8;
}


/* Extra styles for the cancel button */

.cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
    color: white;
}


/* Center the image and position the close button */

.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}

.container-login{
    padding-top: -5px;
   
    margin-top: -28px;
}
.container {
    padding: 20px;
}

span.psw {
    float: right;
    padding-top: 9px;
}


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    padding-top: 60px;
}


/* Modal Content/Box */

.modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto;
    /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 40%;
    /* Could be more or less, depending on screen size */
}

footer {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    border: solid #ddd 1px;
}

footer p {
    color: black;
    float: left;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .container-login{
        padding-right: 0px;

    }
    img{
        margin-left: -35px;
    }
}