/******************/
/* REGISTRATION FORM */
/******************/

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

/* html {
  font-size: 62.5%;
}

body {
  font-weight: 400;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  color: #333;
  background-color: #fff;
} */

.page--reg-admin {
  width: 100%;
  height: 100%;
  background-color: #749ddf;
  margin: 0 auto;
  /* margin-top: 4.8rem; */
  margin-bottom: 4.8rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: fixed;

  /* position: relative; */
}

.reg-container {
  width: 45rem;
  height: 60rem;
  background-color: rgb(194, 129, 129);

  margin-top: 3.6rem;
  margin-bottom: 2.4rem;
  /* margin-bottom: 4.8rem; */
  border-radius: 0.9rem;
}

.item-logo {
  box-shadow: 0 2.4rem 3.2rem rgba(0, 0, 0, 0.774);
}

.registration-form {
  /* position: absolute; */
  width: 45rem;
  height: 60rem;
  margin-bottom: 3.6rem;
  /* margin-top: 2.4rem; */
  /* border-radius: 0.9rem; */
  background-color: white;
  padding: 3.6rem;
  overflow-x: hidden;
  overflow-y: scroll;
  align-self: center;
  scroll-behavior: smooth;
}

.form--info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 2.4rem;
}

.heading-secondary {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
}

.form label {
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
  margin-bottom: 1.2rem;
  margin-top: 3.2rem;
}

.form-input,
.form-country {
  width: 100%;
  height: 4.4rem;
  border-radius: 0.9rem;
  background-color: #f0f1f3;
}

.form-input::placeholder,
.form-state::placeholder,
.form-lga::placeholder {
  font-size: 1.8rem;
  /* padding-left: 1.2rem; */
}

.form-country .form--state-lga {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.form-country {
  font-size: 1.8rem;
}

.form--state-lga input {
  width: 100%;
  height: 4.4rem;
  border-radius: 0.9rem;
}

.btn {
  font-size: 2.4rem;
  margin-top: 3.6rem;
  background-color: #2e6bcf;
  color: #fff;
  padding: 1.2rem 2.4rem;
  border-radius: 0.9rem;
  align-self: center;
  width: 100%;
}

.btn:hover {
  background-color: #ca2e3e;
}

.mks-logo {
  width: 45rem;
  height: 21rem;
  border-radius: 0.9rem;
  margin-top: 2.4rem;
  box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.068);

  /* padding: 2.4rem 3.6rem; */
}

.form-country {
  color: #777;
}

.form input,
.form select {
  width: 100%;
  padding: 0 2rem;
  border-radius: 9px;
  background-color: #fdf2e9;
  color: inherit;
  font-family: "Roboto", sans-serif;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 1.8rem;
}

.mks-logo-small {
  width: 15rem;
  height: 7rem;
}

/******************/
/* LOGIN FORM */
/******************/
.item-logo1 img {
  width: 30rem;
}

/******************/
/* GENERAL */
/******************/

.address {
  word-wrap: break-word;
}

.note_page {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.8;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
  align-self: center;
}

.flex_group {
  display: flex;
  gap: 1.6rem;
}

.flex-2-col {
  gap: 2.4rem;
}

.tbl-info {
  align-self: center;
}

.scroll-form {
  height: 60rem;
  width: 43rem;
  font: 16px/26px;
  overflow: auto;
}

#editable_table tr:nth-child(1) {
  font-weight: bold;
  font-size: 1.6rem;
}

/* table tr td { */
/* border-right: 1px solid #777; */
/* color: black; */
/* } */

/* table tr th { */
/* border-right: 1px solid #777; */
/* color: black; */
/* } */

.def-phone {
  font-weight: 300;
  font-style: italic;
}

.form-textarea {
  font-family: "Lucida Grande", Verdana;
}

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

input {
  font-family: inherit;
}

div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 5px;
  background-color: #cae8ca;
  border: 2px solid #4CAF50;
}


/*********/
/*RADIO BUTTON */
/* Customize the label (the container) */
.rContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.rContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.rContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.rContainer input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.rContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.rContainer .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
/********/

/*********/
/* SIDEBAR NAVIGATION MENU */
/*********/

/* .sidebar-menu-content .nav-sidebar-menu {
  position: fixed;
  overflow: auto;
  height: 100%;
}

.navbar {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
}

.footer-wrap-layout1 {
  /* padding: 2rem 0 4rem; */
/* position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
} */

/* TABLEDIT */

/*
- Font Sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Spacing System (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

COLOR: #175BCA
#C41729
       */
