@import url("../../../global/plugins/dropzone/css/dropzone.css");
@import url("../../../global/plugins/drawing/css/drawingboard.css");
/* here you can put your own css to customize and override the theme */

/***
Rounded Portlets
***/
/*
.portlet {
	border-radius: 4px !important;
}

.portlet .portlet-title {
	border-radius: 4px 4px 0px 0px !important;
}

.portlet .portlet-body,
.portlet .portlet-body .form-actions  {
	border-radius: 0px 0px 4px 4px !important;
}
*/


.table-scrollable { 
    overflow-x: visible; 
    overflow-y: visible; 
}

/*<link href="assets/global/plugins/dropzone/css/dropzone.css" rel="stylesheet"/>
<link href="assets/global/plugins/drawing/css/drawingboard.css" rel="stylesheet">
<style>

* drawingboards styles: set the board dimensions you want with CSS
*/

label { 
	font-weight:bold;
}
.board {
	margin: 0 auto;
	width: 600px;
	height: 400px;
}

h4 .form-section {
	padding-bottom: 3px;
 	border-bottom: 1px solid #eee;
}

tr td.grouping,
tr td.grouping:hover {
    background-color: #D5EAFD !important; font-weight:bold;
}

.mce-edit-area { padding: 10px !important; }

.ui-tab-content, .ui-tabs-panel { 
overflow-y:auto;
overflow-x:hidden;
}

.panel800 {
	height:800px;
	overflow-y:auto;
	overflow-x:hidden;
}

.panel300 {
	height:300px;
	overflow-y:auto;
	overflow-x:hidden;
}

/* Add this CSS to center the login form */ 
.content {
	width: 100%;
	max-width: 800px; /* Adjust based on your form size */
} 

.login-form,
.login-form img,
.form-title {
	width: 100%;
	text-align: center; /* Center the text and image */
}

.login-form img {
	margin: 0 auto 20px; /* Add space below the image */
}
  
/* Adjustments for form elements */
.login-form input[type="text"],
.login-form input[type="password"] {
	width: calc(100% - 20px); /* Full width minus padding */
	margin: 10px 0; /* Space between inputs */
}
  
/* Copyright section */
body.login .copyright {
	text-align: center;
	margin-top: 20px;
	width: 100%;

}
/* Custom Styles for Wider Form Inputs and Button */
.login-form {
    max-width: 500px; /* Adjust this value to increase form width */
    margin: auto; /* Center the form */
}

.form-control, .btn-danger {
    width: 100%; /* Make input fields and button take full width of the form */
}

/* Optional: Adjust padding inside the input fields if necessary */
.form-control {
    padding: 10px;
}

/* Login logo form */
.logo-resize {
    width: 200px !important; /* Adjust this value to your desired width */
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;

}
:root {
	--primary-color: #007bff; /* Adjust this to your primary color */
}


.wrapper {
	width: 450px;
	border-radius: 8px !important;
	padding: 30px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(8px);
	background: #fff;
}

.wrapper h2 {
	font-size: 12px;
	color: #162B4C;
	margin-top: 15px;
}

.input-field {
	position: relative;
	margin: 0 0;
}

.input-field label {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #000000;
	font-size: 16px;
	pointer-events: none;
	transition: 0.15s ease;
}

.input-field input {
	width: 100%;
	height: 30px;
	background: #fff !important;
	border-radius: 5px !important;
	border: 0.1px solid var(--primary-color);
	outline: none;
	font-size: 16px;
	color: #000000;
	padding: 0 10px;
	border-radius: 4px;
}

.input-field input:focus~label,
.input-field input:valid~label {
	font-size: 0.8rem;
	top: 10px;
	transform: translateY(-120%);
}

.form-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 0 0;
	color: #000;
	margin-bottom: 0;
	padding-bottom: 0;
}

.wrapper a {
	color: #000000;
	text-decoration: none;
}

.wrapper a:hover {
	text-decoration: underline;
}

.status {
	margin-bottom: 20px;
}

.alert {
	margin: 10px 0;
	padding: 10px;
	border-radius: 5px;
	background-color: #f8d7da;
	color: #721c24;
}

.alert button {
	border: none;
	background: transparent;
	color: #721c24;
	font-size: 20px;
	line-height: 20px;
	float: right;
}

.alert button:hover {
	color: #f5c6cb;
}

.btn-sm {
	margin-top: 10px;
}

.forget a {
	color: red; /* Change the color of the anchor text */
}

.forget i.fa {
	color: red; /* Change the color of the font-awesome icon */
	margin-right: 5px; /* Optional: Adjust margin to align icon and text */
}