/* config.css */

:root {
  --baseColor: #606468;
}

/* helpers/align.css */

.align {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  place-items: center;
}

.grid {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  max-width: 20rem;
}

/* helpers/hidden.css */

.hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* helpers/icon.css */

:root {
  --iconFill: var(--baseColor);
}

.icons {
  display: none;
}

.icon {
  height: 1em;
  display: inline-block;
  fill: #606468;
  fill: var(--iconFill);
  width: 1em;
  vertical-align: middle;
}

/* layout/base.css */

:root {
  --htmlFontSize: 100%;

  --bodyBackgroundColor: #181616;
  --bodyColor: var(--baseColor);
  --bodyFontFamily: "Poppins", sans-serif;
  --bodyFontFamilyFallback: sans-serif;
  --bodyFontSize: 0.875rem;
  --bodyFontWeight: 400;
  --bodyLineHeight: 1.5;
  --theme-bg-color-00dp: #171717;
  --theme-bg-color-01dp: #1f1d1d;
  --theme-bg-color-02dp: #1f1d1d;
  --theme-bg-color-03dp: #1f1d1d;
  --theme-bg-color-04dp: #272727;
  --theme-bg-color-05dp: #2c2c2c;
  --theme-bg-color-06dp: rgb(39, 37, 37);
  --theme-bg-color-07dp: #333333;
  --theme-bg-color-08dp: #343434;
  --theme-bg-color-09dp: #383838;
  --content-text-high: rgb(255 255 255 / 87%);
  --content-text-error: #cf6679;
  --content-text-warning: #f78c6c;
  --content-text-success: #c3e88d;
  --text-size-small: 12px;
  --text-size-med: 14px;
  --text-size-big: 16px;
	--content-text-low: rgb(255 255 255 / 38%);
	--content-text-medium: rgb(255 255 255 / 60%);
	--content-text-menu: #fffcf5;
  --theme-bg-color: #1e1e1e;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
  font-size: var(--htmlFontSize);
}

body {
  background-color: #2c3338;
  background-color: var(--bodyBackgroundColor);
  color: #606468;
  color: var(--bodyColor);
  font-family: "Open Sans", sans-serif;
  font-family: var(--bodyFontFamily), var(--bodyFontFamilyFallback);
  font-size: 0.875rem;
  font-size: var(--bodyFontSize);
  font-weight: 400;
  font-weight: var(--bodyFontWeight);
  line-height: 1.5;
  line-height: var(--bodyLineHeight);
  margin: 0;
  min-height: 100vh;
}

/* modules/anchor.css */

:root {
  --anchorColor: #eee;
}

a {
  color: #eee;
  color: var(--anchorColor);
  outline: 0;
  text-decoration: none;
}

a:focus,
a:hover {
  text-decoration: underline;
}

/* modules/form.css */

:root {
  --formGap: 15px;
}

input {
  background-image: none;
  border: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  -webkit-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

input[type="submit"] {
  cursor: pointer;
}

.form {
  display: grid;
  grid-gap: 15px;
  gap: 15px;
  grid-gap: var(--formGap);
  gap: var(--formGap);
}

.form input[type="password"],
.form input[type="text"],
.form input[type="submit"] {
  width: 100%;
}

.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* modules/login.css */

:root {
  --loginBorderRadus: 50px;
  --loginColor: #eee;

  --loginInputBackgroundColor: var(--theme-bg-color-02dp);
  --loginInputHoverBackgroundColor: var(--theme-bg-color-06dp);

  --loginLabelBackgroundColor: var(--theme-bg-color-01dp);

  --loginSubmitBackgroundColor: var(--theme-bg-color-03dp);
  --loginSubmitColor: var(--content-text-high);
  --loginSubmitHoverBackgroundColor: var(--theme-bg-color-06dp);
}

.login {
  color: #eee;
  color: var(--loginColor);
}

.login label,
.login input[type="text"],
.login input[type="password"],
.login input[type="submit"] {
  border-radius: 10px;
  border-radius: var(--loginBorderRadus);
  padding: 7px 15px;
}

.login label {
  /* background-color: #363b41; */
  background-color: var(--loginLabelBackgroundColor);
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  padding-left: 15px;
  padding-right: 25px;
	height: 38px;
}

.login input[type="password"],
.login input[type="text"] {
  background-color: #3b4148;
  background-color: var(--loginInputBackgroundColor);
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.login input[type="password"]:focus,
.login input[type="password"]:hover,
.login input[type="text"]:focus,
.login input[type="text"]:hover {
  background-color: rgb(39, 37, 37);
  background-color: var(--loginInputHoverBackgroundColor);
}

.login input[type="submit"] {
  /* background-color: #ea4c88; */
  background-color: var(--loginSubmitBackgroundColor);
  color: var(--content-text-medium);
  font-weight: 700;
	height: 38px;
	transition: 0.4s;
}

.login input[type="submit"]:focus,
.login input[type="submit"]:hover {
	/* background-color: #d44179; */
  background-color: var(--loginSubmitHoverBackgroundColor);
	color: var(--content-text-menu);
}
.submit {
	position: relative;
	transition: 0.4s;
}
.submit::before {
	transition: 0.4s;
}

.submit:hover::before {
	content: "";
	position: absolute;
	left: -2px;
	top: -2px;
	background: linear-gradient(
	 45deg,
	 rgba(242, 218, 123, 0.8),
	 rgba(242, 218, 123, 0.4),
	 rgba(242, 218, 123, 0.8),
	 rgba(242, 218, 123, 0.4),
	 rgba(242, 218, 123, 0.8),
	 rgba(242, 218, 123, 0.4),
	 rgba(242, 218, 123, 0.8),
	 rgba(242, 218, 123, 0.4),
	 rgba(242, 218, 123, 0.8)
	);
	background-size: 400%;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	z-index: -1;
	animation: glower 20s linear infinite;
	border-radius: 50px;
 }
 
 @keyframes glower {
	0% {
	 background-position: 0 0;
	}
	50% {
	 background-position: 200% 0;
	}
	100% {
	 background-position: 0 0;
	}
 }

.login svg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.login label {
	position: relative;
}
/* modules/text.css */

p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.companies-house-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: fit-content;
  padding-bottom: 15px;
}

.companies-house-img img {
  height: 300px;
}

.companies-house-img h2 {
  /* font-size: 19.4px; */
  font-weight: 500;
}

.alert,
.alert a {
  color: var(--content-text-error);
}
.dashboard-company {
  color: var(--content-text-low);
  font-size: 42px;
  z-index: 2;
  /* font-family: 'Gruppo', sans-serif; */
  /* background: linear-gradient(to right, #fff, #eee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
  background: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.38),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.38),
    rgba(255, 255, 255, 0.3)
  );
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animated_text 6s ease-in-out infinite;
  -moz-animation: animated_text 6s ease-in-out infinite;
  -webkit-animation: animated_text 6s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes animated_text {
  0% {
    background-position: 0px 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0px 50%;
  }
}

/* login.css | http://localhost/src/css/login.css?random=1702306623 */

.companies-house-img img {
  /* height: 300px; */
  height: 220px;
}

.companies-house-img {
  /* padding-bottom: 15px; */
  padding-bottom: 35px;
}
