.login-page {
	font-family: "Inconsolata", monospace;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
	background:
        radial-gradient(circle at 12% 18%, rgba(86, 152, 210, 0.18), transparent 16%),
        radial-gradient(circle at 14% 78%, rgba(66, 128, 190, 0.20), transparent 18%),
        radial-gradient(circle at 48% 92%, rgba(156, 88, 170, 0.19), transparent 16%),
        radial-gradient(circle at 84% 70%, rgba(116, 78, 160, 0.18), transparent 20%),
        radial-gradient(circle at 74% 28%, rgba(86, 128, 186, 0.20), transparent 18%),
        radial-gradient(circle at 30% 52%, rgba(210, 92, 146, 0.16), transparent 18%),
        linear-gradient(135deg, #233240 0%, #2D3F53 42%, #263746 72%, #18232d 100%);
    /*background: linear-gradient(45deg, #504383, #1a1f2e);*/
}


#error{
	color: crimson;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 19px;
}

.login-page .card legend{
	font-size: 32px;
	font-weight: 700;
}

.message{
	margin-bottom: 16px;
    padding: 10px 12px;
	font-size: 15px;
	color: #FFFFFF;
	background: rgba(255, 80, 80, 0.15);
	border: 1px solid rgba(255, 80, 80, 0.4);
	letter-spacing: 1px;
}

.card {
	width: 440px;
	height: 570px;
	background: rgba(255,255,255,0.06);
	box-shadow: 0 8px 30px rgba(0,0,0,0.20);
    border-radius: 24px;
    padding: 40px 36px;
    text-align: center;
    color: white;
}

.btn-wrap{
	position: relative;
	overflow: hidden;
	margin: 90px 0 20px;
	height: 80px;
}

.button{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
    width: 100px;
    padding: 10px;
    background: #4a6cf7;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 1px;
}

.button:hover { 
	background: #3557e0;
	color: white;
	font-size: 14px;
}

.avatar {
    font-size: 30px;
    margin-bottom: 12px;
}

.card legend {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 24px;
    display: block;
}


.input {
    border-bottom: 1px solid #555;
    margin: 50px 0;
    text-align: left;
	font-size: 19px;
}

.input label {
    display: none;
	
}

.input input {
    width: 100%;
    background: transparent;
    border: none;
	border-bottom: 2px solid rgba(255,255,255,0.65);
    outline: none;
    padding: 10px 0;
    color: white;
    font-size: 18px;
}

.input input::placeholder {
	color: #888; 
	font-size: 17px;
}


.register {
    font-size: 19px;
    color: #888;
}

.register a {
    color: #4a6cf7;
    text-decoration: none;
    font-weight: 500;
}

.register a:hover{
	color: wheat;
}

/* Link quay lại */
.back-link{
	display: flex;
	margin-top: 30px;
	color: #cfe3ff;
	text-decoration: none;
	align-items: flex-start;
}

.back-link:hover{
	color: wheat;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-text-fill-color: white;
    transition: background-color 5000s ease-in-out 0s;
}