/*
* Login Form Styles
*/

#customer-portal-login-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

#customer-portal-login-form label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: #374151;
	margin-bottom: 0.25rem;
}

#customer-portal-login-form input[type="text"],
#customer-portal-login-form input[type="password"] {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid #d1d5db;
	border-radius: 0.375rem;
	font-size: 0.875rem;
}

#customer-portal-login-form input[type="text"]:focus,
#customer-portal-login-form input[type="password"]:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#customer-portal-login-form .login-remember {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

#customer-portal-login-form .login-remember input[type="checkbox"] {
	width: 1rem;
	height: 1rem;
}

#customer-portal-login-form input[type="submit"] {
	width: 100%;
	padding: 0.625rem 1rem;
	background-color: #3b82f6;
	color: white;
	font-weight: 500;
	border: none;
	border-radius: 0.375rem;
	cursor: pointer;
	transition: background-color 0.2s;
}

#customer-portal-login-form input[type="submit"]:hover {
	background-color: #2563eb;
}

/* Sidebar Styles */
.customer-portal-sidebar .active {
	background-color: #EBE6D9;
	color: #1f2937;
}

/* General Styles */

body {
    color: #111111;
}

.portal-content {
    padding-top: 48px;
    padding-bottom: 48px;
    @media screen and (max-width: 1024px) {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

.portal-content .portal-title {
    font-size: 3rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 1.125rem;
    @media screen and (max-width: 1024px) {
        font-size: 2.5rem;
        @media  screen and (max-width: 640px) {
            font-size: 2rem;
        }
    }
    
}

.portal-content .portal-description {
    font-size: 1.125rem;
}

.panel-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
    @media screen and (max-width: 640px) {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.panel-wrapper.large {
    padding-top: 3rem;
    padding-bottom: 3rem;
    @media screen and (max-width: 640px) {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

.wrapper-title {
    font-size: 2rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 1.5rem;
}