/*
	Document : _login.css
	Created on : Apr 28, 2021
	Author : Mick Whiffin
	Description :
		Style Sheet for Blastramp
		
*/
.login-navbar {
  position: relative;
  top: 0;
  padding: 0.4rem;
}
.login-main-panel {
  box-shadow: 5px 10px 40px var(--color-gray-lighten-3);
  border-radius: 10px;
}
.login-card-body {
  padding: 140px 20px;
}
.login-card-body form {
  background-color: white;
  padding: 50px;
  box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)!important;
  border-radius: 5px;
}
.login-card-body p {
  color: #AAAAAA;
}
.login-card-body input[type=text], 
.login-card-body input[type=password] {
  min-width: 350px;
  height: 2.5rem;
}
.sidebar {
  position: fixed;
  left: 0;
}
.bg-blue-dark {
  background-color: #1f0a46;
  color: white;
}
.w-100 {
  width: 100%;
}
.w-50 {
  width: 50%;
}
.w-40 {
  width: 40%;
}
.w-60 {
  width: 60%;
}
.w-200px {
  width: 200px;
}
.min-w-200 {
  min-width: 200px;  
}
.login-btn {
  border: 0;
  width: 80px;
  height: 2.5rem;
}
.wrapper {
  display: flex;
  width: 100%;
  align-items: stretch;
}
#content {
  width: 100%;
  min-height: 100vh;
  transition: all 0.3s;
}
.align-right {
  margin-left: auto;  
}
.main-logo {
  width: 20rem;
}
.mt-4 {
  margin-top: 2rem;
}

.fixed-bottom {
  background:#1f0a46;
  height: 30px;
  left: 0;
  bottom: 0;
  position: fixed;
  width:100%;
  color: white;
}
