/*
		
		- Font weights
		Default: 400
		Medium: 500
		Semi-bold: 600
		Bold: 700

		- Colors
		- Primary: #010F27
		- Secondary: #B71950
		- Tints:
		#F8F9FA (background)
		#F1F3F5 (table, 2nd color)
		#808793 (border)


		- Spacing system (px)
		2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
		
		- Font sizes (px)
		10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
		
		*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /* font-size: 10px; */
  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #010f27;
  font-size: 1.6rem;
  background-color: #f8f9fa;
}

/**************************/
/* GENRAL REUSABLE COMPONENTS */
/**************************/

input,
select {
  width: 100%;
  height: 3.2rem;
  border: 0.5px solid #808793;
  border-radius: 0.6rem;
  padding-left: 0.8rem;
}

.btn {
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #f8f9fa;
  padding: 0.6rem 0.8rem;
  border-radius: 0.6rem;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease;
}

/**************************/
/* HEADER */
/**************************/

body {
  background-color: #010f27;
}

.login-section {
  display: flex;
  max-width: 192rem;
  padding: 8rem 9.6rem;
  height: 100%;
}

.left-side {
  background-color: #f8f9fa;
  width: 45%;
  border-radius: 3.2rem 0 0 3.2rem;
  position: relative;
}

.right-side {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(circle, #ffffff, #f8e8fc);
  border-radius: 0 3.2rem 3.2rem 0;
}

.admin-dash {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 2.4rem;
}

ion-icon {
  font-size: 0.8rem;
}

.login-form {
  padding: 6.4rem 9.6rem 0 4.8rem;
}

.admin-dash p {
  font-weight: 700;
}

h1 {
  font-size: 4.4rem;
}

.welcome-msg {
  color: rgba(1, 15, 39, 0.5);
  font-weight: 300;
  margin-top: 0.8rem;
}

form {
  margin-top: 3.2rem;
}

form p {
  font-size: 1.6rem;
  font-weight: 700;
}

form input {
  margin-top: 0.8rem;
}

.logo {
  width: 70%;
  /* margin-top: 5rem; */
}

.btn-signin {
  background-color: #d8256a;
  width: 100%;
  height: 3.2rem;
  margin-top: 1.2rem;
}

.btn-signin:hover,
.btn-signin:active {
  transform: translateY(2px);
  background-color: #dc3b79;
  transition: 0.3s;
}

.copyright {
  bottom: 2.4rem;
  left: 2.4rem;
  position: absolute;
}

.copyright p {
  color: rgba(1, 15, 39, 0.5);
  font-weight: 300;
}

.error-msg {
  color: #d8256a;
}
