* {
    margin: 0px;
    padding: 0px;
    font-family: Helvetica, Arial, sans-serif;
}

/* Full-width input fields */
input[type=text], input[type=password] {
    padding: 12px 20px;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

/* Set a style for all buttons */
#btn_login {
    background-color: #252525 !important;
    color: white;
    padding: 14px 20px !important;
    margin: 8px 16px !important;
    border: none;
    cursor: pointer;
    font-size: 20px !important;
}

button:hover {
    opacity: 0.8;
    color: lightblue ;
}

/* Center the image and position the close button */
.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}

.avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

/* Modal Content Box */
.modal-content {
    background-color: #fefefe;
    margin: 4% auto 15% auto;
    border: 1px solid #888;
    width: 30%;
    padding-bottom: 30px;
}

/* The Close Button (x) */
.close-login {
    position: absolute;
    right: 25px;
    top: 0;
    color: black !important;
    font-size: 35px !important;
    font-weight: bold !important;
}

    .span:hover{
        color: black;
        cursor: pointer;
    }

/* Add Zoom Animation */
.animate {
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}
