﻿body {
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    margin: 0% 10% 2% 10%;
}

/* Full-width input fields */
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;
    border-radius: 10px;
}

.input-label {
    color: gray;
    font-size: 20px;
}
/* Set a style for all buttons */
input[type=submit] {
    background-color: #abc84f;
    color: white;
    /*padding: 14px 20px;*/
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 20%;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 10px;
    height: 1.7rem;
}


    input[type=submit]:hover {
        opacity: 0.8;
    }

/* Extra styles for the cancel button */
.cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
}

/* Center the image and position the close button */
.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}

img.avatar {
    width: 40%;
    border-radius: 50%;
}

.linkbtn{
    text-decoration:none;
    color:dimgray
}

    .linkbtn:hover {
        color: #abc84f
    }


span.psw {
    float: right;
    padding-top: 16px;
}

/* The Modal (background) */
.modal {
    display: block !important; /* Hidden by default */
    position: fixed !important; /* Stay in place */
    z-index: 1 !important; /* Sit on top */
    left: 16px !important;
    top: 200px !important;
    width: 100% !important; /* Full width */
    height: 100% !important; /* Full height */
    overflow: auto !important; /* Enable scroll if needed */
    /*background-color: rgb(0,0,0) !important;*/ /* Fallback color */
    /*background-color: rgba(0,0,0,0.4) !important;*/ /* Black w/ opacity */
    padding-top: 60px !important;
}


.modal-content {
    background-color: #fefefe !important;
    margin: 12% auto 12% auto !important;
    border: 1px solid #fff !important;
    width: 30% !important;
    box-shadow: 0px 0px 10px lightgray;
    border-radius: 20px;
}



/* The Close Button (x) */
.close {
    position: absolute;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: red;
        cursor: pointer;
    }

.pulse-heading {
    text-align: left;
    margin-left: 10%;
    color: gray;
    font-size: xx-large;
}

.forgot-password-link {
    color: #ABC84F;
    text-decoration: none;
    float: right;
    font-size: 14px;
}

.form-check-label {
    font-size: 14px;
}

.login-logo{
    width:50%
}
/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 1024px) {


    .modal-content {
        background-color: #fefefe !important;
        margin: 20% auto 28% auto !important;
        border: 1px solid #fff !important;
        width: 50% !important;
        box-shadow: 0px 0px 10px lightgray;
        border-radius: 20px;
    }

    .container {
        margin: 0% 10% 2% 10%;
    }

    span.psw {
        display: block;
        float: none;
    }

    .cancelbtn {
        width: 100%;
    }
}




