html, body {
  padding: 0;
  margin: 0;
  height: 100%;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

body {
  background-image: url('../images/login/login_background_01.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-columns: 3fr minmax(360px, 2fr);
  grid-template-rows: repeat(5, 1fr);
}

#marketing-message-container {
  grid-area: 4 / 1 / 5 / 2;
  padding: 36px 48px;
  margin: 24px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  background: linear-gradient(0deg, #23282E 0%, #23282E 100%), #F0F1F2;
}

#marketing-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

#marketing-message .product-title {
  color: #F0F1F2;
  font-family: "Sharp Sans", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px;
  margin: 0;
}

#marketing-message .product-description {
  color: #F7F7F7;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

#marketing-message .product-link {
  color: #649EF5;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  display: flex;
  gap: 4px;
  align-items: center;
}

#login-container-card {
  grid-area: 1 / 2 / -1 / -1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  margin: 24px;
  padding: 24px;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.08);
  gap: 16px;
}

.row-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

#login-container-card .product-name-container {
  color: #373C42;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.row-container #cisco-logo {
  height: 24px;
}

button[disabled], button.login-button-disabled {
  background: #A3C8FF;
  cursor: not-allowed;
  border: none;
  border-radius: 6px;
  padding: 7px 12px;
  color: #FFFFFF;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.spinner {
  animation: rotate 1s linear infinite;
  position: relative;
  height: 50px;
}

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

@font-face {
  font-family: 'Sharp Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/SharpSans-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-stretch: normal;
  src: url('../fonts/Inter-Thin.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-stretch: normal;
  src: url('../fonts/Inter-ExtraLight.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src: url('../fonts/Inter-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Inter-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/Inter-ExtraBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/Inter-Black.ttf') format('truetype');
}
