:root {
  --blue: #0066cc;
  --blue-2: #0076ce;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --pale: #f1f7fd;
  --pale-2: #eaf3fc;
  --dark: #071524;
  --dark-2: #0a1e36;
  --footer: #2c2c2c;
  --max: 1200px;
  --font: Graphik, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.site-header {
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
  width: min(100%, 1220px);
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  color: #171717;
}

.brand {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 180px;
}

.team-mark {
  color: #42a34f;
  font-size: 21px;
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.team-mark small {
  display: block;
  color: #9cc23d;
  font-size: 8px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.dell-mark {
  color: #0875bf;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.6;
}

.nav-links a:last-child::after {
  content: none;
}

.hero {
  position: relative;
  min-height: 812px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f3eadf;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px 28px;
}

.hero-copy {
  max-width: 660px;
}

.hero h1 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -1.8px;
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 58px;
  font-size: 15px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 45px;
  color: var(--ink);
}

.button,
.text-link,
.pillar-card,
.portfolio-card,
.solution-card,
.infra-card,
.partner-panel,
.socials a {
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease, background-color 220ms ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 24px rgba(0, 102, 204, 0.24);
}

.pillar-card:hover,
.solution-card:hover,
.infra-card:hover,
.partner-panel:hover {
  transform: translateY(-5px);
}

.portfolio-card:hover {
  transform: scale(1.015);
}

.socials a:hover {
  transform: translateY(-3px);
  background: var(--blue);
}

.section {
  padding: 118px 24px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.26px;
  text-align: center;
}

.section-title {
  margin-top: 12px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.04px;
  font-weight: 500;
  text-align: center;
}

.section-subtitle {
  max-width: 960px;
  margin: 18px auto 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.1px;
  text-align: center;
}

.why-dell {
  padding-top: 92px;
  padding-bottom: 84px;
}

.why-dell .section-subtitle {
  max-width: 1066px;
}

.intro-copy {
  max-width: 944px;
  margin: 28px auto 0;
  color: #86868b;
  font-size: 18px;
  line-height: 1.38;
  letter-spacing: -0.18px;
  text-align: center;
}

.partnership {
  background: linear-gradient(156deg, var(--pale-2) 6%, #f8fbff 94%);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 64px;
}

.pillar-card {
  min-height: 198px;
  padding: 32px;
  border-radius: 10px;
  background: #fff;
}

.number {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
}

.pillar-card h3 {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.pillar-card p {
  margin-top: 12px;
  color: #4a5a6a;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.18px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.portfolio-item:nth-child(4n + 1) {
  grid-column: span 3;
}
.portfolio-item:nth-child(4n + 2) {
  grid-column: span 2;
}
.portfolio-item:nth-child(4n + 3) {
  grid-column: span 2;
}
.portfolio-item:nth-child(4n + 4) {
  grid-column: span 3;
}

.portfolio-card {
  position: relative;
  min-height: 392px;
  overflow: hidden;
  border-radius: 28px;
  background: #edf2f6;
}

.portfolio-text {
  padding: 22px 4px 6px;
}

.portfolio-text .label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.16px;
  text-transform: uppercase;
}

.portfolio-text h3 {
  margin-top: 10px;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.64px;
  font-weight: 500;
}

.portfolio-text p {
  max-width: 520px;
  margin-top: 14px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 15px;
  line-height: 1.53;
}

.portfolio-item {
  min-width: 0;
}

.solutions {
  position: relative;
  overflow: hidden;
  background: linear-gradient(157deg, var(--dark) 8%, var(--dark-2) 50%, #061020 92%);
  color: #fff;
}

.solutions .section-subtitle,
.infra-dark-copy {
  color: #8ab8d4;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 80px;
}

.solution-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.solution-card {
  position: relative;
  min-height: 250px;
  padding: 33px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.solution-grid.two .solution-card {
  min-height: 206px;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 2px;
  background: var(--blue-2);
}

.service-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 118, 206, 0.3);
  border-radius: 10px;
  background: rgba(0, 118, 206, 0.2);
}

.service-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #8ec7ff;
  border-radius: 4px;
  box-shadow: inset 0 0 0 3px rgba(0, 118, 206, 0.18);
}

.solution-card h3 {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.25px;
}

.solution-card p {
  margin-top: 12px;
  color: #8aabb0;
  font-size: 14px;
  line-height: 1.57;
}

.deployment-banner {
  position: relative;
  min-height: 220px;
  margin-top: 64px;
  overflow: hidden;
  border-radius: 20px;
  background: #0a1e36;
}

.deployment-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.deployment-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 76px 40px;
}

.deployment-copy h3 {
  color: #fff;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.25px;
}

.deployment-copy p {
  margin-top: 24px;
  color: #fff;
  font-size: 15px;
}

.infra {
  padding-bottom: 84px;
}

.infra-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  margin-top: 64px;
}

.infra-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.12);
}

.infra-card.large img,
.infra-card.tall img {
  height: 382px;
}

.infra-card img {
  width: 100%;
  height: 208px;
  object-fit: cover;
}

.image-wrap {
  position: relative;
}

.tag {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.66px;
  text-transform: uppercase;
}

.infra-body {
  padding: 28px;
}

.infra-card.large .infra-body,
.infra-card.tall .infra-body {
  min-height: 199px;
}

.infra-body h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.25px;
}

.infra-body p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.57;
}

.infra-small-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.partner-panel {
  position: relative;
  min-height: 599px;
  margin-top: 84px;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background: #111;
}

.partner-panel>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38) 52%, rgba(0, 0, 0, 0.03));
}

.partner-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 53px 54px;
}

.partner-content .eyebrow {
  text-align: left;
}

.partner-content h2 {
  margin-top: 16px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.04px;
  font-weight: 500;
}

.partner-content>p {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.18px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px 30px;
  margin-top: 72px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.check-item i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue-2);
}

.check-item img {
  display: none;
}

.check-item i::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 0 24px;
  background: #000;
  color: #fff;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  width: 674px;
  height: 674px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.contact::before {
  content: '';
  position: absolute;
  top: -19%;
  left: -8%;
  width: 600px;
  height: 800px;
  background: url('../images/smart-edge/Ellipse 1 .png') no-repeat center center;
  background-size: contain;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.contact::after {
  content: '';
  position: absolute;
  top: -87px;
  right: 1%;
  width: 800px;
  height: 800px;
  background: url('../images/smart-edge/Ellipse 2.png') no-repeat center center;
  background-size: contain;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  min-height: 782px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 96px;
  align-items: start;
  padding: 96px 0 56px;
}

.contact h2 {
  font-size: 44px;
  line-height: 1.09;
  letter-spacing: -1.92px;
  font-weight: 500;
}

.contact p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-height: 49px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font: 14px var(--font);
}

textarea {
  min-height: 129px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.captcha {
  width: 296px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #d9d9d9;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
}

.captcha-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-box {
  width: 28px;
  height: 28px;
  border: 1px solid #444746;
  border-radius: 6px;
}

.captcha-logo {
  color: #555;
  font-size: 10px;
  line-height: 1.1;
  text-align: center;
}

.submit {
  width: 197px;
  min-height: 53px;
  margin-top: 32px;
  border-radius: 14px;
  background: #1983d9;
  font-size: 14px;
  letter-spacing: 0.35px;
}

.faq {
  background: #fff;
}

.faq-header h3 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.04px;
  font-weight: 500;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.faq .eyebrow,
.faq .section-title,
.faq .section-subtitle {
  text-align: left;
  margin-left: 0;
}

.faq .section-subtitle {
  max-width: 447px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.faq-list {
  padding-top: 4px;
}

details {
  border-bottom: 1px solid var(--line);
}

.accordion-header button {
  width: 100%;
  padding: 32px 24px;
  background: 0 0;
  border: 0;
  text-align: left;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.25px;
  color: var(--ink);
  cursor: pointer;
}

summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.2px;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 560px;
  padding: 0 32px 22px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.bottom-cta {
  background: var(--pale);
  padding: 75px 24px;
}

.cta-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 486px;
  gap: 76px;
  align-items: center;
}

.bottom-cta h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.04px;
  font-weight: 500;
}

.bottom-cta p {
  max-width: 565px;
  margin-top: 28px;
  color: #000;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.1px;
}

.bottom-cta .actions {
  margin-top: 52px;
}

.cta-image img {
  width: 486px;
  height: 401px;
  object-fit: cover;
}

.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 51px 24px 48px;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-title {
  padding-bottom: 24px;
  border-bottom: 1px solid #505050;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.85fr 0.85fr;
  gap: 48px;
  padding-top: 24px;
}

.footer-about p {
  max-width: 580px;
  color: #b5b5b5;
  font-size: 16px;
  line-height: 1.5;
}

.footer-logo {
  width: 195px;
  margin-top: 22px;
  padding: 10px 20px;
  border-radius: 6px;
  background: #fff;
}

.footer-col h3 {
  padding-bottom: 11px;
  border-bottom: 1px solid #363636;
  font-size: 20px;
  line-height: 1.9;
  font-weight: 600;
}

.footer-col ul {
  display: grid;
  gap: 11px;
  margin: 16px 0 0;
  padding: 0;
  color: #bbb;
  font-size: 15px;
  line-height: 1.35;
  list-style: none;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.socials a {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #5a5a5a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
  }

  .nav {
    height: auto;
    min-height: 78px;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 22px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 12px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 270px;
  }

  .hero h1 {
    max-width: 500px;
  }

  .section {
    padding: 84px 22px;
  }

  .pillar-grid,
  .solution-grid,
  .solution-grid.two,
  .portfolio-grid,
  .infra-layout,
  .infra-small-grid,
  .contact-inner,
  .faq-grid,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item {
    grid-column: 1 / -1 !important;
  }

  .portfolio-card,
  .infra-card.large img,
  .infra-card.tall img {
    min-height: 320px;
    height: auto;
  }

  .infra-card img {
    height: 260px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    min-height: auto;
    gap: 44px;
  }

  .cta-inner {
    gap: 32px;
  }

  .cta-image img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 640px;
  }

  .hero img {
    object-position: 62% center;
  }

  .actions {
    gap: 12px;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .section-title,
  .bottom-cta h2 {
    text-align: left;
  }

  .eyebrow,
  .section-subtitle,
  .intro-copy {
    text-align: left;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .partner-content {
    padding: 38px 28px;
  }

  .partner-panel {
    min-height: 690px;
  }

  .faq-grid {
    gap: 36px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: header-in 560ms ease both;
  }

  .hero img {
    animation: hero-drift 9000ms ease-out both;
    transform-origin: 60% 45%;
  }

  .hero-copy h1,
  .hero-copy .actions {
    opacity: 0;
    animation: fade-up 760ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
  }

  .hero-copy .actions {
    animation-delay: 160ms;
  }

  .animate-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.75, 0.2, 1);
    transition-delay: var(--delay, 0ms);
  }

  .animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @keyframes header-in {
    from {
      opacity: 0;
      transform: translateY(-14px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fade-up {
    from {
      opacity: 0;
      transform: translateY(22px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes hero-drift {
    from {
      transform: scale(1.035);
    }

    to {
      transform: scale(1);
    }
  }
}


/* Dell V2 CF7 Form Overrides */
.dell-v2-form-container form {
  display: flex;
  flex-direction: column;
  gap: 16px;

  br {
    display: none;
  }

  .mdm-contact-right .wpcf7 form .form-group p {
    width: 100% !important;
    margin-bottom: 0 !important;
  }
}

.dell-v2-form-container .wpcf7 form>div.form-row,
.dell-v2-form-container .wpcf7 form>div,
.dell-v2-form-container .wpcf7 form>p {
  width: 100%;
  margin-bottom: 0 !important;
  padding: 0;
}

.dell-v2-form-container .wpcf7-form-control-wrap {
  display: block;
}

.dell-v2-form-container p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}

.dell-v2-form-container label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dell-v2-form-container input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.dell-v2-form-container textarea {
  width: 100%;
  min-height: 49px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font: 14px var(--font);
}

.dell-v2-form-container textarea {
  min-height: 129px;
  resize: vertical;
}

.dell-v2-form-container input::placeholder,
.dell-v2-form-container textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.dell-v2-form-container input[type="submit"] {
  width: 197px;
  min-height: 53px;
  margin-top: 32px;
  border: 0;
  border-radius: 14px;
  background: #1983d9;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.35px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.dell-v2-form-container input[type="submit"]:hover {
  opacity: 0.9;
}