﻿body {
    padding-top: 50px;
   
    /*color: #4e1e82;*/
    color: black;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

 /*Set width on the form input elements since they're 100% wide by default*/ 
/*input,
select,
textarea {
    max-width: 280px;
}*/

.btn-primary {
  color: #ffffff;
  background-color: #722BBC;
  border-color: #2e6da4;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #54208C;
  border-color: #204d74;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #722BBC;
  border-color: #722BBC;
  cursor: default;
}

/*
Change the place holder color
 */

.form-control::-moz-placeholder {
  color: #6a6a6a;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6a6a6a;
}
.form-control::-webkit-input-placeholder {
  color: #6a6a6a;
}


/*
 Set the color in the alerts to black   
 */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: black;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: black;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: black;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: black;
}

.well {
  min-height: 0px;
  padding: 0px;
  margin-bottom: 1px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

/*
    Custom nav
*/

/*nav css*/
.gcu-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #522398 !important;
  height: 64px;
  padding: 0 20px;
  box-shadow: 0px 4px 5px #00000029;
  text-decoration: none;
}
  .gcu-nav a:focus {
      color: white;
  }
  .gcu-nav a:hover {
      text-decoration: none;
  color: inherit;
  }
  .gcu-nav a{
      text-decoration: none;
  color: inherit;
  }

.gcu-nav-brand {
  display: flex;
  align-items: center;
}
.gcu-nav-logo {
  margin-right: 10px;
  max-height:50px;

}

.gcu-nav-home {
  font-size: 24px;
  font-family: 'Open Sans', sans-serif;
  color: white;
  text-decoration: none !important;
  position: relative;
}
  .gcu-nav-home:hover {
      text-decoration: none !important;
      color: #f1f1f1;
  }
  .gcu-nav-home:before {
      content: "";
      position: absolute;
      left: -10px; /* Adjust the spacing between the logo and the line */
      top: 50%;
      height: 100%;
      border: 1px solid #E0E0E0;
      background-color: white; /* Vertical line color */
      transform: translateY(-50%);
  }