@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('landing.css');

:root {
    --prossimo-primary: #2C3E50;
    /* Dark Blue from original site.css but overridden by registration theme below */
    --prossimo-accent: #18BC9C;
    --prossimo-light: #F8F9FA;
    --prossimo-dark: #1a252f;
    --bs-font-sans-serif: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #eef2f7, #f8f9fc);
    font-family: var(--bs-font-sans-serif);
    background-color: #e4deeb;
    /* Theme background */
    color: #464278;
    /* Main heading color as text base? Keep standard text unless specific */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    /* Reset default margin */
}

/* Navbar Theme */
.navbar.bg-gradient-blue {
    background: linear-gradient(90deg, #272463, #3c2d86, #301783, #3f41bc, #41c8fc, #1f7fa5);
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Navbar Overrides to match theme */
.navbar-light .navbar-brand {
    color: white !important;
    font-weight: 600;
}

.navbar-light .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
}

.navbar-light .nav-link:hover {
    color: white !important;
}

/* Card Theme */
.card {
    border-radius: 12px;
    background: #f6eff7;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Slight shadow */
}

.card h5 {
    color: #4a45a1;
}

/* Form Controls */
.form-control,
.form-select {
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid #dbd8e1;
    background-color: #f6eff7;
    text-align: left;
}

.form-control:focus,
.form-select:focus {
    color: var(--bs-body-color);
    background-color: #f6eff7;
    border-color: #8f879b;
    outline: 0;
    box-shadow: none;
}

/* Input Icons Wrapper */
.input-icon {
    position: relative;
    margin-bottom: 0px;
    /* managed by form-group spacing */
}

.input-icon .form-control,
.input-icon .form-select {
    padding-left: 40px !important;
}

.input-icon i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
    pointer-events: none;
}

/* Buttons */
.btn-primary,
.btn-prossimo {
    background: linear-gradient(90deg, #4f6ef7, #5c7cfa);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-primary:hover,
.btn-prossimo:hover {
    opacity: 0.95;
    background: linear-gradient(90deg, #3d5ce6, #4b6be9);
    color: white;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #464278;
    font-weight: 600;
}

.main-heading {
    color: #464278;
}

.text-muted {
    color: #6c757d !important;
}

/* Footer */
/* Footer */
/* Footer */
footer {
    background: #272463 !important;
    /* Dark blue matching navbar start */
    background: linear-gradient(to right, #272463, #3c2d86);
    /* Subtle gradient */
    color: #e0e0e0 !important;
    border-top: none !important;
    margin-top: auto;
    /* Sticky footer push */
    padding: 40px 0 20px 0;
    /* More padding for "covering empty area" look */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

footer h5,
footer h6 {
    color: #ffffff !important;
    margin-bottom: 15px;
    font-weight: 600;
}

footer p {
    color: #b0b0d0;
    font-size: 0.9rem;
}

footer ul li {
    margin-bottom: 8px;
}

footer a {
    color: #b0b0d0 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff !important;
    text-decoration: none;
    padding-left: 5px;
    /* Micro-interaction */
}

footer .copyright-text {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #8c8ca0;
}

/* Utilities */
.star {
    color: #db2424;
}

.logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-right: 8px;
}

/* List Box (Helper text on right panels) */
.list-box {
    list-style-type: none;
    padding: 0;
}

.list-box li {
    border: 1px solid #cfc8de;
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 5px;
    position: relative;
    padding-left: 40px;
    background: white;
    /* clearer on colored bg */
}

.list-box li i {
    position: absolute;
    top: 12px;
    left: 15px;
    color: #382b82;
}

/* Layout Container */
.container {
    max-width: 1200px;
}