/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
    
	.login-logo{
		
		position: fixed;
		width: 50vw;
		padding: 5rem;
		bottom:0px;
		right: 0px;
	}
	
	.login-logo img{
		max-width: 100%;
	}    
    .loginPanel {
        width: 400px;
        height: 300px;
        border-radius: 20px;
        background-color: rgba(255,255,255, 0.5);
        text-align: center;
        position: absolute;
        top: 290px;
        left: 190px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 50px;
    }

    .rd-form-input {
        text-align: right;
        font-size: 16px;
        height: 35px;
        border-radius: 10px;
        background-color: rgba(255,255,255,0.7);
    }

    .rd-form-submit-btn {
        background-color: #000000;
        color: #ffffff;
        font-size: 16px;
        position: absolute;
        right: 30px;
        border-radius: 10px;
        width: 100px;
        height: 35px;
        text-align: center;
    }

    .rd-alert {
        position: absolute;
        bottom: 15px;
        width: 350px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 725px) and (max-width: 1199px) {

	.login-logo{
		
		position: fixed;
		width: 50vw;
		padding: 5rem;
		bottom:0px;
		right: 0px;
	}
	
	.login-logo img{
		max-width: 100%;
	}	
	
    html {
        font-size: 14px;
    }

    .loginPanel {
        width: 300px;
        height: 200px;
        border-radius: 10px;
        background-color: rgba(255,255,255, 0.5);
        text-align: center;
        position: absolute;
        top: 300px;
        left: 100px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
        padding-bottom: 15px;
    }

    .rd-form-input {
        text-align: right;
        font-size: 1rem;
        height: 25px;
        border-radius: 5px;
        background-color: rgba(255,255,255,0.7);
    }

    .rd-form-submit-btn {
        background-color: #000000;
        color: #ffffff;
        font-size: 0.9rem;
        position: absolute;
        right: 20px;
        border-radius: 5px;
        width: 70px;
        height: 26px;
        padding: 0px;
        text-align: center;
    }

    .rd-alert {
        position: absolute;
        bottom: 20px;
        width: 270px;
        font-size: 0.8rem;
        height: 30px;
        padding: 5px;
        margin: 0px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 725px) {

	.login-logo{
		position: fixed;
		top: 1rem; 
		padding: 2rem;

	}
	
	.login-logo img{
		max-width: 100%;
	}	
	
    html {
        font-size: 14px;
    }

    .loginPanel {
        width: 80%;
        height: 35%;
        border-radius: 10px;
        margin: 0 auto;
        background-color: rgba(255,255,255, 0.5);
        text-align: center;
        position: relative;
        top: 30%;
        padding-top: 55px;
     
    }

    .rd-form-input {
    	width: 80%;
    	margin: 2vh auto;
        text-align: right;
        font-size: 1rem;
        height: 5%;
        background-color: rgba(255,255,255,0.7);
        text-align: center;
     	
    }

    .rd-form-submit-btn {
        background-color: #000000;
        color: white;
        font-size: 18px;
       	position: relative;    
        width: 80%;
        height: 4vh;
        padding: 0px;
        text-align: center;      
        height: 40px;
        line-height: 40px;
        border-radius: 0px;
    }

    .rd-alert {
        bottom: 20px;
        width: 270px;
        font-size: 0.8rem;
        height: 30px;
        padding: 5px;
        margin: 0 auto;
    }
}

