/* ==========================================================================
   HORT IQ Portal - Global CSS Variables & Common Styles
   ========================================================================== */

:root {
  /* ── Brand Colors ── */
  --color-primary: #00ac69;
  --color-primary-dark: #008a54;
  --color-primary-light: #33bd87;
  --color-secondary: #8fbf3f;
  --color-accent: #ff5f00;
  --color-accent-dark: #e05500;
  --color-accent-light: #ff7f33;

  /* ── Neutral Colors ── */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text: #323130;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #dddddd;
  --color-border-light: #eeeeee;

  /* ── Teal / Header Colors ── */
  --color-teal: #0C797C;
  --color-teal-dark: #0a6567;

  /* ── Background Colors ── */
  --bg-white: #ffffff;
  --bg-navbar: #FDFDFC;
  --bg-grey: #f5f5f5;
  --bg-grey-dark: #e8e8e8;
  --bg-overlay: rgba(0, 0, 0, 0.4);

  /* ── Pillar Colors ── */
  --color-pillar-up: #ff5f00;
  /* Usage and Perception - Orange */
  --color-pillar-rp: #00ac69;
  /* Retail and Purchasing - Green */
  --color-pillar-acn: #8fbf3f;
  /* Australian Consumer Needs - Lime */
  --color-pillar-icn: #0078d4;
  /* International Consumer Needs - Blue */

  /* ── Typography ── */
  --font-family: 'Urbanist', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-h1: 36px;
  --font-size-h2: 30px;
  --font-size-h3: 24px;
  --font-size-h4: 20px;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --line-height-base: 1.5;
  --line-height-heading: 1.2;

  /* ── Spacing ── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-section: 60px;

  /* ── Border Radius ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-round: 50%;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-navbar: 0 2px 20px rgba(0, 0, 0, 0.06);

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* ── Breakpoints (for reference in JS, CSS uses media queries) ── */
  --bp-mobile: 768px;
  --bp-tablet: 1024px;
  --bp-desktop: 1200px;

  /* ── Z-Index Scale ── */
  --z-dropdown: 100;
  --z-navbar: 1000;
  --z-modal: 1050;
  --z-chatbot: 9999;
}


/* ==========================================================================
   Base / Reset Helpers
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: var(--line-height-base);
}


/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  line-height: var(--line-height-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
}

.banner-header {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
}

.banner-body,
.content-body {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  line-height: var(--line-height-base);
}

.content-header {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
}

.home-dashboard-heading {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.hort-button {
  display: inline-block;
  padding: 4px 28px;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
  background-color: var(--color-primary);
  color: var(--color-white);
  height: 48px;
}

.hort-button:hover,
.hort-button:focus {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.hort-button.accent,
.hort-button.orange {
  background-color: var(--color-accent);
}

.hort-button.accent:hover,
.hort-button.orange:hover {
  background-color: var(--color-accent-dark);
}

.print-button {
  display: inline-block;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color var(--transition-fast);
}

.print-button:hover {
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  text-decoration: none;
}


/* ==========================================================================
   Pillar Button Variants
   ========================================================================== */

.button-up {
  background-color: var(--color-pillar-up);
}

.button-rp {
  background-color: var(--color-pillar-rp);
}

.button-acn {
  background-color: var(--color-pillar-acn);
}

.button-icn {
  background-color: var(--color-pillar-icn);
}

.button-up:hover {
  background-color: var(--color-accent-dark);
}

.button-rp:hover {
  background-color: var(--color-primary-dark);
}

.button-acn:hover {
  background-color: #7aaa2e;
}

.button-icn:hover {
  background-color: #006abb;
}


/* ==========================================================================
   Banner
   ========================================================================== */

.hort-banner-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
  display: flex;
  align-items: center;
  position: relative;
}

.hort-banner-img .grey-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-overlay);
  z-index: 1;
}

.hort-banner-img .banner-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}


/* ==========================================================================
   Section Backgrounds
   ========================================================================== */

.grey-background {
  background-color: var(--bg-grey);
}

.white-background {
  background-color: var(--bg-white);
}


/* ==========================================================================
   Cards
   ========================================================================== */

.home-content-card,
.pillar-content-card,
.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.home-content-card:hover,
.pillar-content-card:hover,
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.home-content-card a,
.pillar-content-card a,
.card a {
  text-decoration: none;
  color: inherit;
}

.home-content-card img,
.pillar-content-card img,
.card img {
  width: 100%;
  height: auto;
  display: block;
}

.home-content-card-body,
.pillar-content-card-body {
  padding: var(--space-md);
}

.home-content-card-body h3,
.pillar-content-card-body h3 {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-sm);
}

.home-content-card-body p,
.pillar-content-card-body p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.home-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}


/* ==========================================================================
   Featured Resources / Slider
   ========================================================================== */

.featured-content-signin {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.featured-content-signin .fleft,
.featured-content-signin .banner-header {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
}

.slider-wrapper {
  position: relative;
}


/* ==========================================================================
   Subscribe / CTA Section
   ========================================================================== */

.subscribe-wrapper {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2xl) 0;
}

.subscribe-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.subs-left-content {
  flex: 1;
  min-width: 280px;
}

.subs-left-content h4 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.subs-left-content p {
  color: var(--color-white);
  opacity: 0.9;
}

.subs-right-content .hort-button {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.subs-right-content .hort-button:hover {
  background-color: var(--bg-grey);
  color: var(--color-primary-dark);
}


/* ==========================================================================
   Discover Consumer Insights (Cross-pillar nav)
   ========================================================================== */

.discover-consumer-insights {
  padding: var(--space-section) 0;
}

.discover-consumer-insights h3 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xl);
}

.buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.buttons-container .hort-button {
  min-width: 200px;
  text-align: center;
}


/* ==========================================================================
   Forms
   ========================================================================== */

.pp-registration {
  padding: var(--space-2xl) 0;
}

.pp-registration-form {
  margin-top: var(--space-xl);
}

.registration-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.field-element {
  display: flex;
  flex-direction: column;
}

.field-element label {
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.field-element input,
.field-element select,
.field-element textarea {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast);
}

.field-element input:focus,
.field-element select:focus,
.field-element textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 172, 105, 0.2);
}


/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-section {
  padding: var(--space-2xl) 0;
}

.contact-enquiries-section {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.contact-enquiries {
  flex: 1;
  min-width: 220px;
}

.contact-enquiry-heading {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
}

.contact-enquiry-info {
  color: var(--color-text-light);
}

.contact-enquiry-info a {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-enquiry-info a:hover {
  text-decoration: underline;
}


/* ==========================================================================
   Accordion (Bootstrap panels)
   ========================================================================== */

.panel-group .panel {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.panel-heading {
  background-color: var(--bg-grey);
  padding: 0;
}

.panel-title a {
  display: block;
  padding: 14px var(--space-md);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.panel-title a:hover {
  color: var(--color-primary);
}

.panel-body {
  padding: var(--space-md);
  color: var(--color-text-light);
  line-height: var(--line-height-base);
}


/* ==========================================================================
   Navbar (Phase 3 Floating Header)
   ========================================================================== */

.hiq-navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: var(--z-navbar);
  padding-top: var(--space-lg);
  pointer-events: none;
}

.hiq-navbar {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-navbar);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-navbar);
  padding: var(--space-sm) var(--space-md);
  pointer-events: auto;
}

.hiq-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 61px;
}

.hiq-navbar-brand img {
  width: 160px;
  height: auto;
  display: block;
}

.hiq-navbar-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hiq-navbar-links>li>a {
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hiq-navbar-links>li>a:hover,
.hiq-navbar-links>li>a:focus {
  color: var(--color-text);
}

.hiq-navbar-links>li.dropdown .dropdown-menu {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  margin-top: var(--space-sm);
}

.hiq-navbar-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hiq-btn-login,
.hiq-btn-login a {
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-teal);
  background: none;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px var(--space-md);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  list-style: none;
}

.hiq-btn-login a:hover,
.hiq-btn-login a:focus {
  color: var(--color-teal-dark);
  text-decoration: none;
}

.hiq-btn-register,
.hiq-btn-register a {
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  background-color: var(--color-teal);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px var(--space-md);
  min-width: 160px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  list-style: none;
  display: inline-block;
}

.hiq-btn-register:hover,
.hiq-btn-register a:hover {
  background-color: var(--color-teal-dark);
  color: var(--color-white);
  text-decoration: none;
}

/* Logged-in user dropdown in navbar */
.hiq-navbar-actions .hiq-btn-user a {
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-teal);
  text-decoration: none;
  border: 2px solid var(--color-teal);
  border-radius: var(--radius-md);
  padding: 12px var(--space-md);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.hiq-navbar-actions .hiq-btn-user a:hover {
  background-color: var(--color-teal);
  color: var(--color-white);
  text-decoration: none;
}

.hiq-navbar-actions .hiq-btn-user .dropdown-menu {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  min-width: 160px;
}

.hiq-navbar-actions .hiq-btn-user .dropdown-menu a {
  border: none;
  border-radius: 0;
  padding: 8px var(--space-md);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  color: var(--color-text);
  display: block;
}

.hiq-navbar-actions .hiq-btn-user .dropdown-menu a:hover {
  background-color: var(--bg-grey);
  color: var(--color-teal);
}

/* Mobile toggle */
.hiq-navbar .navbar-toggle {
  display: none;
  border: none;
  background: none;
  padding: var(--space-sm);
  cursor: pointer;
}

.hiq-navbar .navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 1px;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .hiq-navbar-wrapper {
    padding-top: var(--space-sm);
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  .hiq-navbar {
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
  }

  .hiq-navbar .navbar-toggle {
    display: block;
  }

  .hiq-navbar-inner {
    flex-wrap: wrap;
    height: auto;
  }

  .hiq-navbar-brand img {
    width: 120px;
  }

  .hiq-nav-collapse {
    display: none;
    width: 100%;
    padding-top: var(--space-md);
  }

  .hiq-nav-collapse.in {
    display: block;
  }

  .hiq-navbar-links {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
    width: 100%;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: var(--space-md);
  }

  .hiq-navbar-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
  }

  .hiq-btn-register,
  .hiq-btn-register a {
    width: 100%;
    min-width: unset;
  }
}

/* ==========================================================================
   Navbar Pillar Themes
   ========================================================================== */

.nav-header.orange {
  border-bottom-color: var(--color-pillar-up);
}


/* header  */


@media (min-width: 1200px) {
  .hort-v2.navbar.navbar-inverse.navbar-static-top {
   min-height: auto !important;
    position: fixed;
    top: 15px;
    right: 0px;
    left: 0px;
    margin: 0 auto;
    background: transparent;
  }


  .hort-v2 .nav-header {
    background: #fff;
    border-radius: 20px;
     min-width: 900px;
     max-width: 1200px;
     margin: 0 auto;
     border: 1px solid #f5f5f5;
    }

  .hort-v2 .nav-header .container-fluid {
    display: flex;
    padding: 0px;
    margin: 0px;
  }

  .hort-v2 .nav-header .navbar-right  {
    margin: auto !important;
    margin-left: 80px !important;
  }

 .hort-v2 .nav-header .navbar-brand img.pillarlogo {
  height: 50px !important;
  }

  .hort-v2 .nav-header .navbar-brand img {
    width: 132px !important;
    height: 50px !important;
  }

  .hort-v2 .navbar-collapse {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .hort-v2 .nav-header .weblinks {
    margin-top: 0px !important;
  }

  .hort-v2 li.login-button {
    margin-left: 125px;
  }

  .hort-v2 .navbar-nav>li {
    white-space: nowrap;
  }

  .hort-v2 li#userdetails {
    margin-left: 20px !important;
  }
}

@media (max-width : 1199px) {

  .navbar-static-top.navbar .navbar-collapse {
    width: 100% !important;
  }
  .hort-v2.navbar.navbar-inverse.navbar-static-top{
    position: fixed;
    top:0px;
    width: 100%;
  }
}

.hort-v2 .login-button {
  background: none;
}

.hort-v2.navbar-inverse .navbar-nav>li.login-button a,
.hort-v2.navbar-inverse .navbar-nav>li.login-button a:hover {
  color: #0c797c !important;
}

.hort-v2 li.register-button {
  background-color: #0c797c !important;
}

.hort-v2.navbar-inverse .navbar-nav>li.register-button a:hover {
  color: #fff !important;
}

.hort-v2 li#userdetails {
  border-color: #0c797c  ;
}

.hort-v2 li#userdetails a {
  color: #0c797c  !important;
}

@media (max-width: 1199px) {
  .hort-v2 .nav-header {
    padding: 0px !important;
  }

  .hort-v2 .nav-header .navbar-brand img {
    width: 132px !important;
    height: 50px;
  }

  .hort-v2.navbar .navbar-toggle {
    margin: 15px 20px 0px 0px !important;
  }

  .hort-v2 .nav-header .navbar-brand img.pillarlogo{
    height: 45px !important;
    margin: 0px;
  }
}



/* ==========================================================================
   Search Box
   ========================================================================== */

#searchboxtop {
  background-color: var(--color-primary);
  padding: var(--space-2xl) 0;
  color: var(--color-white);
}

#searchboxtop h1 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.serchboxt {
  display: flex;
  max-width: 600px;
}

.serchboxt input {
  flex: 1;
  padding: 12px var(--space-md);
  border: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
}

.serchboxt button {
  padding: 12px var(--space-xl);
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.serchboxt button:hover {
  background-color: var(--color-accent-dark);
}


/* ==========================================================================
   Acknowledgement
   ========================================================================== */

.home-acknowledgement {
  padding: var(--space-2xl) 0;
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
}


/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: var(--space-sm);
}

.mt-2 {
  margin-top: var(--space-md);
}

.mt-3 {
  margin-top: var(--space-lg);
}

.mt-4 {
  margin-top: var(--space-xl);
}

.mb-1 {
  margin-bottom: var(--space-sm);
}

.mb-2 {
  margin-bottom: var(--space-md);
}

.mb-3 {
  margin-bottom: var(--space-lg);
}

.mb-4 {
  margin-bottom: var(--space-xl);
}

.gap-20 {
  gap: 20px;
}

.hidden-print {
  display: block;
}

@media print {
  .hidden-print {
    display: none !important;
  }
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .home-card-container {
    flex-wrap: wrap;
  }

  .home-content-card,
  .carousel-content-card {
    flex: 0 0 calc(50% - var(--space-md));
  }

  .buttons-container .hort-button {
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-h1: 28px;
    --font-size-h2: 24px;
    --font-size-h3: 20px;
  }

  .home-content-card,
  .carousel-content-card {
    flex: 0 0 100%;
  }

  .registration-fields {
    grid-template-columns: 1fr;
  }

  .subscribe-section {
    flex-direction: column;
    text-align: center;
  }

  .contact-enquiries-section {
    flex-direction: column;
  }

  .buttons-container {
    flex-direction: column;
  }

  .buttons-container .hort-button {
    width: 100%;
  }

  .hort-banner-img {
    min-height: 200px;
  }
}

/* animate v2 button */

.hort-v2-button-animate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hort-v2-button-animate:hover,
.hort-v2-button-animate:focus,
.hort-v2-button-animate:active {
  -webkit-animation-name: wobble-vertical-on-hover;
  animation-name: wobble-vertical-on-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}


/* fotter */

.wrapper-body.pp-signin {
  min-height: calc(100vh - 300px) !important;
}

.wrapper-body.pp-signin button[type="submit"] {
  width: 80px !important;
  border-radius: 8px !important;
}

.hort-v2.pp-profile .crmEntityFormView .actions input {
  border-radius: 8px  !important;
  padding: 10px 20px !important;
  width: auto !important;
}