 /*DASHBOARD CSS START*/
 
 .defisa-dashboard{
    display:flex;
    min-height:100vh;
    background:#f7f8fb;
}

/* Sidebar */

.defisa-dashboard .sidebar{
    width:256px;
    background:#fff;
    border-right:1px solid #e5e7eb;
    padding:20px;
}

.defisa-dashboard .menu-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 25px;
}

.defisa-dashboard .menu-item.active svg path,
.defisa-dashboard .menu-item:hover svg path{
    stroke: #ef2b2d;
}

.defisa-dashboard .menu-item a{
    text-decoration:none;
    color:#333;
}

.defisa-dashboard .menu-item.active{
    background:#FEE7E7;
    color: #ef2b2d;
}

.defisa-dashboard .menu-item:hover{
    /*background:#FEE7E7;*/
    color: #ef2b2d;
}

.defisa-dashboard .menu-item.active a{
    color:#4E5150;
    font-weight:600;
}

.defisa-dashboard .cp-content {
    width: calc(100% - 256px);
    margin-left: auto;
}
@media (max-width: 991px) {
	.defisa-dashboard .cp-content {
		width: 100%;
	}
}
/* Content */

.defisa-dashboard .dashboard-content{
    flex:1;
    padding:40px;
}

.defisa-dashboard .page-header h1{
    font-size:48px;
    margin-bottom:10px;
    color:#24184b;
}

.defisa-dashboard .page-header p{
    color:#667085;
}

/* Cards */

.defisa-dashboard .cards-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:30px;
}

.defisa-dashboard .action-card{
    background:#fff;
    border:1px solid #e8edf3;
    padding:25px;
}

.defisa-dashboard .action-card h3{
    margin:15px 0 10px;
    color:#24184b;
    font-size:32px;
}

.defisa-dashboard .action-card p{
    color:#666;
    margin-bottom:20px;
}

.defisa-dashboard .icon-box{
    width:50px;
    height:50px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.defisa-dashboard .red{background:#fde9e9;}
.defisa-dashboard .purple{background:#ede9ff;}
.defisa-dashboard .blue{background:#e8f0ff;}
.defisa-dashboard .green{background:#e3f8ea;}

.defisa-dashboard .btn{
    display:inline-block;
    padding:12px 18px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.defisa-dashboard .btn-red{background:#ff2328;}
.defisa-dashboard .btn-purple{background:#24184b;}
.defisa-dashboard .btn-blue{background:#7f9fc8;}
.defisa-dashboard .btn-green{background:#00b140;}

/* Requests */

.defisa-dashboard .requests-box{
    margin-top:30px;
    background:#fff;
    border:1px solid #e8edf3;
    padding:20px;
}

.defisa-dashboard .requests-box h2{
    margin-bottom:20px;
    color:#24184b;
}

.defisa-dashboard .stats-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.defisa-dashboard .stat-card{
    padding:20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.defisa-dashboard .stat-card span{
    display:block;
    margin-bottom:10px;
}

.defisa-dashboard .stat-card strong{
    font-size:36px;
}

.defisa-dashboard .recent{
    background:#edf4ff;
}

.defisa-dashboard .review{
    background:#fff9e9;
}

.defisa-dashboard .complete{
    background:#edfdf1;
}

.defisa-dashboard .empty-state{
    text-align:center;
    padding:80px 20px;
    color:#7a8aa0;
}

.defisa-dashboard .empty-icon{
    font-size:60px;
    margin-bottom:15px;
}

@media(max-width:991px){

    .defisa-dashboard{
        flex-direction:column;
    }

    .defisa-dashboard .sidebar{
        width:100%;
    }

    .defisa-dashboard .cards-grid{
        grid-template-columns:1fr;
    }

    .defisa-dashboard .stats-row{
        grid-template-columns:1fr;
    }
}
/*DASHBOARD CSS END*/



/*LOGIN FORM START*/
.cas-login-form {
	/*max-width: 500px;*/
	margin: 0 auto;
	background-color: #fff;
	/*padding: 100px 50px;*/
	/*box-shadow: 0px 20px 25px -5px #0000001f;*/
}

.cas-form-group {
    margin-bottom: 20px;
}

.cas-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.cas-input-wrap {
    position: relative;
}

.cas-input-wrap .cas-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #3d2f67;
    font-size: 16px;
}

.cas-input-wrap input {
    width: 100%;
    height: 40px;
    padding: 0 12px 0 40px !important;
    border: 1px solid #d6d6d6;
    border-radius: 0;
    box-sizing: border-box;
    font-size: 14px;
    background: #fff;
}

.cas-forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.cas-forgot-password a {
    color: #155DFC;
    font-size: 13px;
    text-decoration: none;
    font-family: "Mulish", Sans-serif;
}

.cas-login-btn {
    width: 100%;
    background-color: #ec1c24 !important;
    color: #fff;
    border: none;
    font-family: "Mulish", Sans-serif;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 25px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 26px;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    border-style: none;
    padding: 10px 160px !important;
}

@media (max-width: 767px) {
    .cas-login-btn {
        padding: 10px 20px !important;
    }
}

.cas-register-link {
    text-align: center;
    font-size: 14px;
}

.cas-register-link span {
    display: block;
    color: #666;
}

.cas-register-link a {
    color: #155DFC;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    font-family: "Mulish", Sans-serif;
}
/*LOGIN FORM END*/

/*REGISTER FORM START*/
.cas-register-form {
max-width: 700px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
}

.cas-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.cas-form-header h2 {
    font-size: 24px !important;
}

.cas-form-header p {
    color: #45556C;
    font-size: 16px;
}

.cas-register-form h3 {
    font-size: 16px;
    margin: 25px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.cas-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cas-col {
    flex: 1;
}

.cas-col-full {
    width: 100%;
}

.cas-register-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
}

.cas-register-form label span {
    color: red;
}

.field-error {
    color: #dc2626;
    font-size: 13px;
    margin-top: 5px;
}

.has-error {
    border-color: #dc2626 !important;
}

.cas-error {
    background: #fee2e2;
    color: #b91c1c;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
}

.cas-register-form input[type=text],
.cas-register-form input[type=email],
.cas-register-form input[type=password],
.cas-register-form input[type=file] {
    background: #fff;
    width: 100%;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 12px;
    box-sizing: border-box;
}

.cas-note {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.cas-checkbox {
    margin: 20px 0;
    font-size: 14px;
}

.cas-info-box {
    background: #DBEAFE;
    border: 1px solid #dbe7ff;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #1C398E;
    margin-bottom: 20px;
}

.cas-register-btn{
    width: 100%;
    background-color: #ec1c24 !important;
    color: #fff;
    border: none;
    font-family: "Mulish", Sans-serif;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 26px;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    border-style: none;
    padding: 10px 20px !important;
}

.cas-login-link {
    text-align: center;
    margin-top: 20px;
}

.cas-login-link span {
    display: block;
    color: #155DFC;
    margin-bottom: 4px;
    font-size:16px;
    font-weight: 700px;
}

.cas-login-link a {
    color: #155DFC;
    text-decoration: none;
    font-size: 16;
    font-weight: 600;
}

@media(max-width:768px) {

    .cas-row {
        flex-direction: column;
        gap: 10px;
    }

}
/*REGISTER FORM END*/


.profile-card{
    background:#fff;
    border-radius:16px;
    padding:30px;
    display:flex;
    gap:30px;
    align-items:flex-start;
}

.profile-avatar{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#e53935;
    color:#fff;
    font-size:36px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.profile-info{
    flex:1;
}

.profile-row{
    display:flex;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px solid #eee;
}

.profile-row label{
    font-weight:600;
    color:#666;
}

.profile-row span{
    color:#222;
}

.cas-user-name {
    color: #1B0D3B;
    font-weight: 700;
    font-size: 16px;
    margin-right: 10px;
}
.cas-logout-link{
    color: #45556C;
    font-weight: 700;
    font-size: 16px;
    margin-right: 10px;
}
.cas-logout-link:hover{
  color: #45556C;  
}

.cas-dashboard .requests-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.cas-dashboard .cp-table {
    width: 100%;
    border-collapse: collapse;
}

.cas-dashboard .cp-table thead th {
    background: #f8fafc;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.cas-dashboard .cp-table tbody tr {
    transition: all .2s ease;
}

.cas-dashboard .cp-table tbody tr:hover {
    background: #f9fafb;
}

.cas-dashboard .cp-table td {
    padding: 10px 20px;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
}

.cas-dashboard .request-id {
    font-weight: 700;
    color: #2563eb;
}

.cas-dashboard .status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.cas-dashboard .status-completed {
    background: #dcfce7;
    color: #166534;
}

.cas-dashboard .status-unread {
    background: #fef3c7;
    color: #92400e;
}

.cas-dashboard .pagination {
    margin-top: 25px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.cas-login-link-header{
    color: #155DFC;
    margin-bottom: 4px;
    font-size:16px;
    font-weight: 700px;
}

.cas-login-link-header:hover{
    color: #155DFC;
}