/* Default Desktop Styles */
.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: center;
	font-size: 16px;
	height: 35px;
	border-radius: 10px;
	background-color: rgba(255,255,255,0.7);
	width: 100%;
	margin: 10px 0;
	border: none;
	padding: 0 10px;
}

.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;
}

/* Mobile Devices */
@media only screen and (max-width: 992px) {

	.login-logo {
		position: fixed;
		top: 1rem; 
		padding: 2rem;
	}
	
	.login-logo img {
		max-width: 100%;
	}	

    .loginPanel {
        width: 90%;
        height: auto;
        border-radius: 10px;
        margin: 0 auto;
        background-color: rgba(255,255,255, 0.5);
        text-align: center;
        position: relative;
        top: 30%;
        padding: 30px 20px;
    }

    .rd-form-input {
    	width: 100%;
    	margin: 15px 0;
        font-size: 16px;
        height: 40px;
        background-color: rgba(255,255,255,0.7);
        text-align: center;
        border-radius: 10px;
        border: none;
        padding: 0 10px;
    }

    .rd-form-submit-btn {
        background-color: #000000;
        color: white;
        font-size: 16px;
        width: 100%;
        height: 40px;
        text-align: center;
        border-radius: 5px;
        border: none;
        margin-top: 10px;
    }

    .rd-alert {
        width: 100%;
        font-size: 0.9rem;
        margin: 10px 0;
        padding: 10px;
    }
}

