body {
    background-color: #fff7f0;
}

h3 {
    --pico-font-weight: 400;
}

button {
    --pico-background-color: #ff7043;
	--pico-contrast-hover-background: #333;
    --pico-primary-hover-background: #ff8469;
    --pico-primary-hover-border: #ff603d;
	--pico-secondary-background: #ff8469;
}

:is(button,[type=submit],[type=button],[role=button]).contrast {
	--pico-contrast-hover-background: #8B8B8B;

}

progress {
    --pico-progress-color: #ff7043;
}

[role=button], [type=button], [type=file]::file-selector-button, [type=reset], [type=submit], button {
    --pico-primary-background:  #ff7043;
    --pico-primary-border: #ff603d;
	--pico-primary-hover-background: #ff8469;
}

.card {
    margin-top: 5rem;
    padding: 2rem;
}

.align-center {
    display: flex;
    justify-content: center;
    align-items: center;
	text-align: center;
	height: 100vh;
}

.v-align-middle {
    vertical-align: middle;
}

.m-right-05 {
    margin-right: 0.5rem;
}

.notification {
    background-color: darkred;
    color: white;
    text-align: center;
}

.notification .content {
	display: grid;
	grid-template-columns: 90% auto;
	align-items: center;
}

.notification .content a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	justify-self: end;
}

.notification .content a:hover {
	color: #333;
	text-decoration: none;
	transform: scale(2.0);
}

.hidden {
    visibility: hidden;
    display: none;
}

form label,
fieldset legend {
	font-weight: 500;
}

.loader-overlay {
    visibility: hidden;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(1px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-overlay.htmx-request {
    visibility: visible;
}

.loader {
    width: 175px;
    height: 80px;
    display: block;
    margin: auto;
    background-image: radial-gradient(circle 25px at 25px 25px, #FFF 100%, transparent 0), radial-gradient(circle 50px at 50px 50px, #FFF 100%, transparent 0), radial-gradient(circle 25px at 25px 25px, #FFF 100%, transparent 0), linear-gradient(#FFF 50px, transparent 0);
    background-size: 50px 50px, 100px 76px, 50px 50px, 120px 40px;
    background-position: 0px 30px, 37px 0px, 122px 30px, 25px 40px;
    background-repeat: no-repeat;
    position: relative;
    box-sizing: border-box;
}

.loader::after {
    content: '';
    left: 0;
    right: 0;
    margin: auto;
    bottom: 20px;
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-color: #FF3D00 transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.company-logo-container {
    margin-bottom: 30px;
}

.company-logo {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.login-title {
    font-size: 28px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.login-subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 40px;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    padding: 60px 40px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.google-signin-button {
    background-color: #ffffff;
    border: 1px solid #dadce0;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 250px;
    height: 60px;
    margin: 0 auto 30px auto;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none;
}

.google-signin-button:hover {
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-color: #c9c9c9;
}

.google-signin-button:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #dadce0;
}

.google-signin-button .google-logo {
    max-width: 90%;
    height: 45px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
    object-fit: contain;
    flex-shrink: 0;
}

.login-terms {
    color: #888888;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 20px;
}

.login-terms a {
    color: #ff7043;
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-terms a:hover {
    color: #f4511e;
    text-decoration: underline;
}

.header {
	padding-bottom: 40px;
}

.header h1 {
	font-size: 24px;
	font-weight: 500;
	color: #1f1f1f;
	padding-bottom: 10px;
	letter-spacing: -0.2px;
}

.subtitle {
	font-size: 16px;
	color: #666666;
	line-height: 1.4;
	margin-bottom: 0;
}

.upload-area {
	border: 2px dashed #e0e0e0;
	border-radius: 8px;
	padding: 50px 30px;
	margin-bottom: 30px;
	background-color: #fdfdfd;
}

.upload-icon {
	background-color: #ffe3d6;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 25px auto;
}

.upload-icon svg {
	width: 40px;
	height: 40px;
	color: #ff7043;
}

.upload-area h3 {
	font-size: 22px;
	color: #333333;
	padding-bottom: 10px;
	font-weight: 500;
}

.error {
	color: #cc0000;
}

.title {
	font-size: 24px;
	font-weight: 500;
	color: #1f1f1f;
	padding-bottom: 10px;
	letter-spacing: -0.2px;
}
