/*
Copyright (C) theONEco. 2017. All Rights Strictly Reserved.
Unauthorized copying of this file, via any medium is strictly prohibited.
Proprietary and confidential.
*/
/* 
    Created on : 15-Nov-2017, 2:12:01 PM
    Author     : Jongyul
*/

.vertical-center {
   min-height: 50%;
   min-height: 50vh;
   display: flex;
   align-items: center;
}

.auth {
   position: relative;
   z-index: 1;
   background: #FFFFFF;
   margin: 0 auto 100px;
   padding: 32px;
   text-align: center;
   box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.auth input,
.auth button {
   outline: 0;
   width: 100%;
   border: 0;
   font-size: 14px;
}
.reset-password-form input,
.registration-form input,
.login-form input,
.auth button {
   padding: 15px;
   margin: 0 0 15px;
}
.auth input {
   background: #f2f2f2;
   box-sizing: border-box;
}

.auth button {
   text-transform: uppercase;
   background: #41ba7b;
   color: #FFFFFF;
   -webkit-transition: all 0.3 ease;
   transition: all 0.3 ease;
   cursor: pointer;
}

.auth button:hover,
.auth button:active,
.auth button:focus {
   background: #41ba7b;
}

.auth .message {
   margin: 15px 0 0;
   color: #f26e87;
   font-size: 14px;
}
.auth .message a {
   color: #658ac7;
   text-decoration: none;
}

.list-group-item {
    border-top: unset;
    border-left: unset;
    border-right: unset;
    border-bottom: 3px solid #ebebeb;
}

.list-group-item.active {
   background-color: unset;
   border-color: unset;
   border-bottom: 3px solid #faab27;
   color: #000;
}


.btn-orange {
   color:#fff;      
   border-color: #faab27;
   background-color: #faab27;
   position:relative;
   outline:none;
}
.btn-orange:hover {
   color:#fff;      
   border-color: #dd9b2f;
   background-color: #dd9b2f;
}

.navbar-brand {
   text-align: center;
   width: 100%;
}