/* Login style start */
.btn, 
.alert {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.icon-svg {
    width: 15px;
    height: 14px;
    margin-right: 5px;
}
.login-box-body {
    border: 5px solid #59b78c;
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.5);
    -o-box-shadow: 0 0 10px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.login-box-body .svg-icon {
    width: 20px;
    height: 20px;  
    margin-right: 3px;
    vertical-align: middle;
}
.login-box-body .list-group-item {
    padding: 10px;
}
.login-page {
    background-color: #ecf0f5;
}
.login-page .activate-store {
    display: block;
}
.store-list {
  position: relative;
  max-height: 250px;
  overflow: hidden;
  padding: 2px 4px 2px 2px;
}
.store-list .list-group-item {
  display: table;
  width: 100%;
}
.store-list .list-group-item a {
  display: table-row;
}
.store-list .store-icon,
.store-list .store-name {
  display: table-cell;
  vertical-align: middle;
}  
.store-list .store-icon {
  width: 10%;
}
.store-list .store-name {
  width: 90%;
  font-weight: 700;
}
.login-logo .text {
    color: #337ab7;
    font-family: Helvetica, Sans-Serif;
    font-size: 22px;
    text-shadow: 10px 10px 3px rgba(0,0,0,0.1);
    text-transform: uppercase;
    color:#FF0A00;
}
#credentials {
    margin-top: 10px;
}
#credentials .table {
    margin-bottom: 0;
}
#credentials .table td {
    cursor: pointer;
}
.copyright {
    margin-top: 20px;
}
/* New Green login card design */
.login-box{
  width:320px;
  margin:60px auto;
  background:linear-gradient(to bottom,#9ad27a 0%,#6fb26a 100%);
  border-radius:8px;
  padding:25px 25px 120px;
  position:relative;
}

/* Store Selection Card */
.store-list {
  position: relative;
  max-height: 400px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  background: #fff;
  width: 100%;
  padding: 25px;
}

.store-list .list-group-item {
  border: none;
  margin: 0;
  padding: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 80px;
  line-height: 1.5;
}

.store-list .list-group-item a {
  display: flex;
  align-items: center;
  height: 100%;
}

.store-list .store-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  margin-right: 25px;
}

.store-list .store-icon svg {
  width: 25px;
  height: 25px;
  fill: #6fb26a;
}
.login-box:after{
  content:'';
  position:absolute;
  left:0; right:0;
  bottom:-60px;
  height:60px;
  background:#fff;
  border-bottom-left-radius:8px;
  border-bottom-right-radius:8px;
}

/* Store Selection Styles */
.login-box-body {
  background:transparent;
  border:none;
  box-shadow:none;
}

.store-list {
  position: relative;
  max-height: 300px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  background: #fff;
}

.store-list .list-group-item {
  border: none;
  margin: 0;
  padding: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.store-list .list-group-item:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.store-list .list-group-item a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.store-list .store-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  margin-right: 15px;
}

.store-list .store-icon svg {
  width: 20px;
  height: 20px;
  fill: #6fb26a;
}

.store-list .store-name {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-list .store-name span {
  color: #6c757d;
  font-size: 14px;
}

/* Login button styles */
#login-btn{
  background:#ffb046;
  border:none;
  color:#fff;
  font-weight:bold;
  padding: 12px 25px;
  margin-top: 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#login-btn:hover{
  background:#ffa42f;
  color:#fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,176,70,0.3);
}

/* Login style end */