.login-page .logo span,
.register-page .logo span {
    color: #7c5cc4;
}

.login-page a.forgot-pass,
.login-page a.signup,
.register-page a.forgot-pass,
.register-page a.signup {
    font-size: 0.8em;
    color: #7c5cc4;
}

.login-page,
.register-page {
    background: #f5f5f5;
    background-image: url('../images/auth/auth-light.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 0;
    margin-left: 0;
}

.dark-mode .login-page,
.dark-mode .register-page {
    background: #111;
    background-image: url('../images/auth/auth-light.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 0;
    margin-left: 0;
}

.login-page .form-outer,
.register-page .form-outer {
	min-height: 100vh;
	max-width: 600px;
	margin: 0 auto;
	padding: 20px 0;
	position: relative
}

.login-page .copyrights,
.register-page .copyrights {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%
}

.login-page .copyrights p,
.register-page .copyrights p {
	font-size: .6em;
	font-weight: bold;
	margin-bottom: 10px;
    color: #ffffff;
}

.login-page .form-inner,
.register-page .form-inner {
    border-radius: 16px;
    padding: 45px 35px;
    background: rgb(0 0 0 / 25%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 40%);
    box-shadow: 0 10px 40px rgb(255 166 4);
    margin-bottom: 20px;
    width: 100%;
    transition: all 0.3s ease;
}

.dark-mode .login-page .form-inner,
.dark-mode .register-page .form-inner {
    border-radius: 16px;
    padding: 45px 35px;
    background: rgba(30, 41, 59, 0.45);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    margin-bottom: 20px;
    width: 100%;
    transition: all 0.3s ease;
}

.login-page .logo,
.register-page .logo {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
}

.login-page .logo img,
.register-page .logo img {
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.login-page .logo span,
.register-page .logo span {
    color: #7c5cc4;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.5);
}

.dark-mode .login-page .logo span,
.dark-mode .register-page .logo span {
    color: #a78bfa;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.login-page p,
.register-page p {
	font-size: .8em;
	font-weight: 300;
	color: #aaa;
	margin-bottom: 0
}

.login-page form,
.register-page form {
	margin: 2rem auto 1rem;
	max-width: 300px
}

.login-page a.forgot-pass:focus,
.login-page a.forgot-pass:hover,
.login-page a.signup:focus,
.login-page a.signup:hover,
.register-page a.forgot-pass:focus,
.register-page a.forgot-pass:hover,
.register-page a.signup:focus,
.register-page a.signup:hover {
	color: #66b0ff;
	text-decoration: none
}

.login-page a.forgot-pass,
.register-page a.forgot-pass {
	display: block
}

.login-page a.create-account,
.register-page a.create-account {
	border-radius: 50px;
	font-size: .75em;
	margin-top: 10px;
	color: #999;
	text-transform: uppercase
}

.login-page .terms-conditions,
.register-page .terms-conditions {
	margin-top: 20px
}

.login-page small,
.register-page small {
	font-size: .65em;
	color: #aaa;
	line-height: .9em
}

@media (min-width:768px) {
	.login-page p,
	.register-page p {
		font-size: .9em
	}
	.login-page form label.label-custom,
	.register-page form label.label-custom {
		font-size: .9em
	}
	.login-page form small,
	.register-page form small {
		font-size: .8em
	}
	.login-page .terms-conditions label,
	.register-page .terms-conditions label {
		font-size: .9em
	}
	.login-page a.forgot-pass,
	.login-page a.signup,
	.register-page a.forgot-pass,
	.register-page a.signup {
		font-size: .8em
	}
	.login-page small,
	.register-page small {
		font-size: .8em
	}
	.login-page .copyrights p,
	.register-page .copyrights p {
		font-size: 1em;
		font-weight: bold
	}

    .login-page .copyrights a {
		font-size: 1em;
		font-weight: bold;
        color: rgb(245, 245, 245);

	}
}


.form-group-material {
    position: relative;
    margin-bottom: 30px;
}

input.input-material {
    width: 100%;
    border: 1px solid rgba(124, 92, 196, 0.25);
    border-bottom: 2px solid rgba(124, 92, 196, 0.4);
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    color: #1e1b4b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.dark-mode input.input-material {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(124, 92, 196, 0.5);
    color: #f8fafc;
}

input.input-material~label {
    color: #4b5563;
    position: absolute;
    top: 13px;
    left: 14px;
    cursor: text;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    font-weight: 500;
    pointer-events: none;
}

.dark-mode input.input-material~label {
    color: #94a3b8;
}

input.input-material~label.error {
    color: #ef4444;
    font-size: .75em;
    position: absolute;
    top: auto;
    bottom: -30px;
    left: 14px;
}

input.input-material:focus {
    border-color: #7c5cc4;
    border-bottom: 2px solid #7c5cc4;
    background: rgba(255, 255, 255, 0.95);
    outline: none;
    box-shadow: 0 0 10px rgba(124, 92, 196, 0.15);
}

.dark-mode input.input-material:focus {
    background: rgba(15, 23, 42, 0.95);
    border-color: #7c5cc4;
    border-bottom: 2px solid #7c5cc4;
    box-shadow: 0 0 10px rgba(124, 92, 196, 0.3);
}

input.input-material~label.active {
    font-size: 0.75em;
    top: -18px;
    left: 4px;
    color: #7c5cc4;
    font-weight: 700;
}

input.form-control-custom:checked+label::before {
    background: #7c5cc4 !important;
}

.btn {
    font-weight: 400;
    border: 1px solid transparent;
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    padding: .45rem .75rem;
    font-size: .9rem;
    line-height: 1.5;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}


.btn-primary {
    color: #fff;
    background-color: #7c5cc4;
    border-color: #7c5cc4;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(124, 92, 196, 0.35);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background-color: #6244a6;
    border-color: #6244a6;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124, 92, 196, 0.5);
}

.btn-primary:active {
    transform: translateY(1px);
}

.admin-btn, .staff-btn, .customer-btn {
    border-radius: 8px;
    margin: 5px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.admin-btn:hover, .staff-btn:hover, .customer-btn:hover {
    transform: translateY(-1px);
}

.btn-success {
	color: color-yiq(#34cea7);
	background-color: #34cea7;
	border-color: #34cea7
}

.btn-success:hover {
	color: color-yiq(#34cea7);
	background-color: #34cea7;
	border-color: #34cea7
}

.btn-success.focus,
.btn-success:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
	box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.btn-info {
	color: color-yiq(#17a2b8);
	background-color: #17a2b8;
	border-color: #17a2b8
}

.btn-info:hover {
	color: color-yiq(#138496);
	background-color: #138496;
	border-color: #117a8b
}

.btn-info.focus,
.btn-info:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
	box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-dark {
	color: color-yiq(#343a40);
	background-color: #343a40;
	border-color: #343a40
}

.btn-dark:hover {
	color: color-yiq(#23272b);
	background-color: #23272b;
	border-color: #1d2124
}

.btn-dark.focus,
.btn-dark:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
	box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}
