/*
 * Northeast State Community College Custom Styles
 * Based on the official branding guide:
 * Primary Teal: #00937E (RGB 0,147,126) CMYK 94,0,56,18
 * Primary Navy: #00476C (RGB 0,71,108) CMYK 100,18,0,65
 * Logo Fonts: Helvetica Condensed Bold, Century Gothic
 */

:root {
    --nescc-teal: #00937E;
    --nescc-navy: #00476C;
    --nescc-white: #FFFFFF;
    --nescc-gray-light: #F5F5F5;
    --nescc-font-sans: 'Century Gothic', 'Helvetica Neue', Arial, sans-serif;
}

/* Global resets */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--nescc-font-sans);
    background-color: var(--nescc-gray-light);
    color: var(--nescc-navy);
}

/* Centered login segment */
main.center-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--nescc-gray-light);
}

/* Logo styling */
.product-logo svg {
    width: 60px;
    height: auto;
}

.product-title-text {
    font-family: var(--nescc-font-sans);
    font-weight: bold;
    font-size: 1.75rem;
    color: var(--nescc-navy);
    margin-bottom: 1rem;
}

/* Form segment */
.ui.segment {
    background: var(--nescc-white);
    border: 1px solid var(--nescc-navy);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 2rem;
    max-width: 450px;
    width: 100%;
}

/* Primary button */
.ui.primary.button {
    background-color: var(--nescc-teal) !important;
    border-color: var(--nescc-teal) !important;
    color: var(--nescc-white) !important;
    border-radius: 0.25rem;
}

.ui.primary.button:hover {
    background-color: var(--nescc-navy) !important;
    border-color: var(--nescc-navy) !important;
}

/* Link button for create account */
.ui.button.link-button {
    background-color: transparent;
    color: var(--nescc-teal);
    border: 1px solid var(--nescc-teal);
    border-radius: 0.25rem;
}

.ui.button.link-button:hover {
    background-color: var(--nescc-teal);
    color: var(--nescc-white);
}

/* Input fields */
.ui.input input {
    border: 1px solid var(--nescc-navy);
    border-radius: 0.25rem;
    padding: 0.75rem;
}

/* Checkbox and links */
.ui.checkbox label, a {
    color: var(--nescc-navy);
}

a:hover {
    color: var(--nescc-teal);
}

/* Footer styling */
footer.footer {
    background: var(--nescc-white);
    border-top: 1px solid var(--nescc-navy);
    padding: 1rem 0;
    color: var(--nescc-navy);
    font-size: 0.875rem;
    text-align: center;
}

.product-title {
  display: flex;
  flex-direction: column;  /* stack them vertically */
  align-items: center;     /* center both horizontally */
}

.product-logo svg {
  max-width: 600px;  /* up from 300px */
  width: 100%;
  height: auto;
  display: block;
}

/* Tagline & heading styling go here, too: */
.nescc-tagline { /* … */ }
.product-title-text { /* … */ }
