body{
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.left-panel{
	background: url('../resources/gm-login-bg.png') no-repeat center center;
	background-size: cover;
	height:100vh;
}

.gm-header{
	position: absolute;
	top: 20%;
	left: 15%;
	font-family: 'Nunito Sans';
}
		
.gm-header h1{
	color: #fdfdfd;
	font-size: 4vw;
	font-weight: bolder;
}

.gm-header h1 sub{
	font-size: 40%
}

.right-panel h1 span.badge{
	font-size: 1rem;
    margin-left: 5px;
    color: #fff;
    background-color: #0063a3;
}

.gm-header h2{
	color: #35a8b9;
	font-size: 2vw;
}

#para-content{
	background-color: rgba(97, 143, 193, 0.8);
	color: white;
	padding: 20px;
	margin: 20px;
	border-radius: 8px;
	position: absolute;
	top : 50%;
    width: 55%;
	padding-top: 45px;
	box-shadow: 5px 5px 6px 1px #0000008a;
	font-size: 1vw;
}

#para-content a{
	font-size: 0.9vw;
}

.para-badge{
	position: absolute;
	top: 15px;
	right: 15px;
/*	background-color: #a2b7d2;*/
	background-color:#98edff;
	color: #0050b3;
	padding: 5px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
}

.para-text-item{
	margin-bottom: 15px;
	line-height: 1.6;
}

.para-text-item a{
	/*color: #8fe4f6;*/
	color: #6eeaff;
	font-weight: 500;
        font-style: italic;
}

.right-panel{
	background: #e8ecef;
	height:100vh;
	display: flex;
	flex-direction: column;
	padding: 50px 40px;
}
.right-panel .gm-login-trmb-logo{
	margin-bottom: 50px;
}
.right-panel .gm-login-trmb-logo img{
	max-width: 180px;
}
.right-panel h1{
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 15px;
	color: #333;
}
.right-panel .form-label{
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 8px;
	color: #333;
	display: block;
}
.right-panel .form-group{
	margin-bottom: 25px;
}
.right-panel .form-control{
	border: none;
	border-bottom: 1px solid #6a6e79;
	border-radius: 0;
	padding: 10px 12px;
	font-size: 14px;
	background: #f5f5f5;
	transition: border-color 0.3s ease;
}
.right-panel .form-control:focus{
	border-bottom-color: #0063a3;
	box-shadow: none;
	outline: none;
	background: white;
}
.right-panel .btn-primary{
	background-color: #0063a3;
	border: none;
	border-radius: 4px;
	padding: 10px 24px;
	font-size: 15px;
	font-weight: 500;
	margin-top: 5px;
	cursor: pointer;
}
.right-panel .btn-primary:hover{
	background-color: #004d7f;
}
#login-container{
	height: 100vh;
	margin: 0;
}

#login-info{
	margin-top: 15px;
	font-size: 13px;
	color: #555;
}

#ssoLink{
	margin-top: 15px;
	text-align: center;
}

a{
	color: #0063a3;
	text-decoration: none;
	font-size: 14px;
}

.sso{
	display: none;
}

.gm{
	display: block;
}

.error-alert {
	background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
	border-left: 4px solid #dc3545;
	border-radius: 8px;
	padding: 6px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	position: fixed;
	top: 20px;
	right: 20px;
	min-width: 300px;
	max-width: 345px;
	z-index: 9999;
	animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100%);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.error-content {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.error-icon {
	width: 24px;
	height: 24px;
	color: #d32f2f;
	flex-shrink: 0;
}

.error-text {
	flex: 1;
}

.error-title {
	color: #333;
	font-size: 14px;
	font-weight: 600;
	display: block;
	margin-bottom: 4px;
}

.error-message {
	color: #555;
	font-size: 13px;
	margin: 0;
}

.error-close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: #666;
	width: 20px;
	height: 20px;
}

.error-close:hover {
	color: #333;
}

.error-close svg {
	width: 100%;
	height: 100%;
}
