	.rts-contact-fluid{
		background:#fff;
		padding:70px;
		border-radius:20px;
		box-shadow:0 20px 50px rgba(0,0,0,.08);
	}
	.pre-title{
		color:#0d6efd;
		font-weight:500;
		margin-bottom:10px;
	}
	.title{
		font-weight:600;
		margin-bottom:10px;
	}
	.form-wrapper{
		max-width:750px;
		margin:0 auto;
	}
	form input,
	form textarea{
		width:100%;
		border:1px solid #e2e5ec;
		padding:15px 18px;
		border-radius:12px;
		font-size:15px;
		margin-bottom:20px;
		outline:none;
	}
	form input:focus{
		border-color:#0d6efd;
		box-shadow:0 0 0 4px rgba(13,110,253,.15);
	}
	.name-email{
		display:flex;
		gap:20px;
	}
	.name-email input{
		flex:1;
	}
	.rts-btn{
		background:#e5190c;
		color:#fff;
		padding:14px 35px;
		border-radius:14px;
		border:none;
		font-weight:500;
		transition:.3s;
	}
	.rts-btn:hover{
		background:#f6f6f6;
		color:#1C2539;
	}
	.login-link{
		margin-top:20px;
		text-align:center;
		font-size:14px;
	}
	.login-link a{
		color:#0d6efd;
		text-decoration:none;
		font-weight:500;
	}
	@media(max-width:768px){
		.name-email{
			flex-direction:column;
		}
		.rts-contact-fluid{
			padding:40px;
		}
	}
	

.success-msg {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #e6ffed;
    border: 1px solid #28a745;
    color: #155724;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    animation: fadeIn 0.5s ease-in-out;
}

.error-msg {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #ffe6e6;
    border: 1px solid #dc3545;
    color: #721c24;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-msg a.login-link-success {
    color: #155724;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 5px;
}

.success-msg a.login-link-success:hover {
    color: #0b3d1a;
    text-decoration: none;
}
.error-msg2{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    background:#ffe6e6;
    color:#cc0000;
    border:1px solid #ffb3b3;
    border-radius:6px;
    text-align:center;
    font-weight:600;
}
.success-msg2{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    background:#e6fff2;
    color:#00994d;
    border:1px solid #66ffb3;
    border-radius:6px;
    text-align:center;
    font-weight:600;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}

.profile-card{
    max-width:700px;
    margin:0 auto;
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.profile-section h4{
    margin-bottom:20px;
    font-weight:600;
}

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

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

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

.profile-actions{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.btn-secondary{
    background:#f44336;
    color:#fff;
    padding:10px 20px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.btn-secondary:hover{
    background:#d32f2f;
}
/* Sidebar */
.profile-sidebar{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.user-info{
    margin-bottom:20px;
    border-bottom:1px solid #eee;
    padding-bottom:15px;
}

.user-info h5{
    margin:0;
    font-weight:600;
}

.user-info p{
    font-size:14px;
    color:#777;
    margin:5px 0 0;
}

.sidebar-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-menu li{
    margin-bottom:10px;
}

.sidebar-menu li a{
    display:block;
    padding:10px 15px;
    border-radius:6px;
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.sidebar-menu li a:hover{
    background:#f0f4ff;
    color:#0056ff;
}

.sidebar-menu li.active a{
    background:#0056ff;
    color:#fff;
}

.logout-link{
    color:#e53935 !important;
}

/* Main Content */
.profile-content{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

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

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

.profile-row span{
    color:#333;
}
input.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
}