﻿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 */
        .btn-login {
            background-color: #cc0033;
            color: white;
            padding: 14px 20px;
            margin: 8px 0;
            border: none;
            cursor: pointer;
            width: 100%;
            font-weight: bold;
        }

            .btn-login: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%;
        }

        

        span.psw {
            float: right;
            padding-top: 16px;
        }

        /* The Modal (background) */
        .loginmodal {
            display: block; /* Hidden by default */
            position: relative; /* Stay in place */
            z-index: 1; /* Sit on top */
            left: 0;
            bottom: 0;           
            width: 100%; /* Full width */
            overflow: hidden; /* Enable scroll if needed */
            padding: 25% 5%;
        }

        /* Modal Content/Box */
        .modal-content-login {
            width: 100%;
            position: absolute;
            bottom: 25px;
            left: 0;
        }
        
         .loginmodal {
            background:url(../images/rutgers-traditional-campus-gate.jpg);
            background-repeat:no-repeat;
            background-size: 100% 100%;
           color:#ffffff ;
        }

        /* 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;
            }

        /* 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: 300px) {
            span.psw {
                display: block;
                float: none;
            }

            .cancelbtn {
                width: 100%;
            }
        }

        .login-title {
            font-size: 55px;
             color:#ffffff ;
        }

        .login-message {
            color: #cc0033;
        }
        
        #top-bar{
        background: rgb(204, 0, 51);
        }
        
        .login-link{
        font-size: 20px;
        }
        
         /* Change styles for span and cancel button on extra small screens */
        @media screen and (max-width: 1000px) {            
            .login-title{
                font-size: 45px;
            }
            
            .login-link{
                font-size: 16px;
            }
            
             .imgcontainer {
            margin: 6px 0 6px 0;
            }
        }
        
         @media screen and (max-width: 650px) {            
            .login-title{
                font-size: 30px;
            }
            
            .login-link{
                font-size: 12px;
            }
            
             .imgcontainer {
            margin: 2px 0 2px 0;
            }
        }