/* ################################################################################################################
###########  BASE DESKTOP  ########################################################################################
################################################################################################################### */
:root {
  --color: White;
}

* { 
  margin: 0; 
  padding: 0; 
  color: var(--color);
  background-color: transparent;
} 

.login-desktop {
  display: '' !important;
}

.login-mobile {
  display: none !important;
}

html {
  position: relative;
  min-height: 100%;
  font-size: 16px;
}

.navbar-brand {
  letter-spacing: -1px; 
  font-weight: 600; font-size: 2rem; font-family: 'Carlito';
}

body {
  /* background-color: red; to verify gaps in between sections */
}

a {
  color: var(--color);
}

.container {
  width: 100%;
  margin: 0; 
  padding: 0;
  position: relative;
}

.navbar-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0.5rem 1.75rem 0.2rem 1.75rem;
  z-index: 0;
}

.nav-item {
  padding: 0 0.75rem;
}

.nav-link, .btn {
  color: --color !important;
  font-weight: 500;
  border: None;
  white-space: nowrap;
  /*border-color: White;
  border-style: dotted;*/
  background-color: transparent;
}

.muted {
  opacity: 0.3;
}

.muted:hover {
  opacity: 1;
}

.nav-link:hover, .btn:hover {
  color: var(--color);
  font-weight: 800;
  border: None;
  background-color: transparent;
}

.active {
  border: 0px solid Black;
}

.form .nav-item {
  float: right;
}

.navbar-user {
  float: right;
}

.custom-toggler {
  display: none;
}


#id_password_helptext a {
  color: var(--color);
  font-size: 0.8rem;
}

/* ################################################################################################################
###########  BASE MOBILE  #########################################################################################
################################################################################################################### */

@media (max-width: 768px) {
  .login-desktop {
    display: none !important;
  }

  .login-mobile {
    display: block !important;
  }

  html {
    font-size: 16px;
  }

  .navbar {
    padding: 0rem;
    margin: 0;
    left: -0.5rem;
  }

  .navbar-brand {
    font-size: 2rem;
    margin: 0rem 2.5rem;
    font-weight: 800;
  }

  .navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 0rem 0.4rem 0rem;
    border-bottom: 0px dotted var(--color);
    z-index: 0;
  }

  .navbar-collapse {
    border: 1px dotted var(--color);
    background: linear-gradient(135deg, #00ACCF 0%, #023EAD 185%);
    width: 100vw;
    margin: 0;
    margin-top: 7px;
  }

  .custom-toggler {
    display: inline;
    border: 0px; 
    background-color: transparent; 
    color: var(--color);;
    font-size: 1.5rem;
  }

  .navbar-toggler-icon {
    background-image: none!important;
    height: auto;
    width: auto;
    margin: 0px 0.5rem;
    position: relative;
    transition: all 0.35s ease-out;
    transform-origin: center; 
    vertical-align: text-top;
  }
  
  .navbar-user {
    width: 100%;
    margin: 0;
    float: left;
    border-top: 1px dotted var(--color);
  }

  form {
    margin-top: -6rem;
  }

  .form .nav-item {
    width: 100%;
    float: left;
    text-align: left;
  }

  .form-control {
    height: 2.5rem;
    width: calc(100vw - 8rem);
    text-align: center;
    margin: 0 auto;
    font-size: 1rem;
  }

  .form-label {
    color: transparent;
  }

  .form-text a {
    color: var(--color);
    text-decoration: none;
    font-size: 1rem;
  }

  #id_password_helptext {
    float: right;
    margin-top: 1.5rem; 
    margin-bottom: 5rem;
    margin-right: 3rem;
    color: var(--color);
  }

  #id_password1_helptext {
    float: right;
    margin-top: 3rem; 
    margin-bottom: 3rem;
    margin-right: 3rem;
    color: var(--color);
  }

  #id_password1_helptext li {
    margin: 1rem 0;
    margin-left: 1rem;
    text-align: left;
    line-height: 1.3;
    font-size: 0.9rem;
  }
    
  .btn-success {
    border-radius: 1.5rem;
    height: 3rem;
    width: calc(100vw - 8rem);
    background: linear-gradient(135deg, #00ACCF 0%, #023EAD 100%);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0px 0px 20px 0px var(--color);
  }

}

/* ################################################################################################################
###########  SCROLLBARS (AVOID) ###################################################################################
################################################################################################################### */

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 0px;
  width: 0px;
}
*::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: transparent;
}

*::-webkit-scrollbar-track:hover {
  background-color: transparent;
}

*::-webkit-scrollbar-track:active {
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0);
  background-color: transparent;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--color);
}

*::-webkit-scrollbar-thumb:active {
  background-color: var(--color);
}

@media (max-width: 768px) {
  *::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: transparent;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}

*::-webkit-scrollbar-thumb:active {
  background-color: transparent;
}
}

/* Add to your base.css or in a <style> tag
Added this to give better style control for sign up form (and perhaps as well the other forms eg sign in, change password, etc)
*/
.asteriskField {
    display: none;  /* Hides the required asterisk if you don't want it */
}

.control-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-control {
    border-radius: 0px !important;  /* Softer corners */
    padding: 0.5rem 0.25rem !important;
    border: 0; outline: none;
    border-bottom: 2px solid #e9ecef !important;
    background: transparent;
    transition: all 0.2s ease;
    font-size: 1.25rem;
    color: White;
}

.form-control::placeholder {
  color: Black;
  opacity: 0.7;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  border: none; outline: none;
  color: White;
}

.form-check-input {
  scale: 0.7; left: 0.5rem;
}

.custom-crispy-form ul {
  margin: 2rem 1rem;
  font-size: 0.9rem;
}


.help-block {
    background: Red;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.help-block ul {
    margin: 0;
    padding-left: 1.5rem;
}

.help-block li {
    margin-bottom: 0.25rem;
}

.text-danger {
    background: #ecc;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
}
