@charset "UTF-8";
@import url("font.css");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	background: #f4f6f8;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1f2933;
}

/* ===== CARD LOGIN ===== */
.login-wrapper {
	position: relative;
	width: 100%;
	max-width: 26.25rem;
	padding: 1.25rem;
}

.login-card {
	background: #fff;
	padding: 2.5rem;
	border-radius: 0.875rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* LOGO */
.logo {
	text-align: center;
    margin-top: -1.25rem;
}

.logo img {
	width: 12.5rem;
}

/* TITULO */
.login-card h1 {
	font-size: 1.375rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 0.5rem;
}

.login-card p {
	font-size: 0.8125rem;
	color: #6b7280;
	text-align: center;
	margin-bottom: 1.75rem;
}

/* INPUTS */
.input-group {
	margin-bottom: 1.125rem;
}

.input-group label {
	font-size: 0.8125rem;
	color: #6b7280;
	display: block;
	margin-bottom: 0.375rem;
}

.input-group input {
	width: 100%;
	padding: 0.75rem 0.75rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	transition: .2s;
}

.input-group input:focus {
	border-color: #6366f1;
	outline: none;
}

/* OPTIONS */
.options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8125rem;
	margin-bottom: 1.375rem;
}

.options a {
	text-decoration: none;
	color: #6366f1;
}

.options a:hover {
	text-decoration: underline;
}

/* BUTTON */
.btn-login {
	width: 100%;
	padding: 0.75rem;
	border: none;
	border-radius: 0.5rem;
	background: #6366f1;
	color: white;
	font-weight: 500;
	font-size: 0.875rem;
	cursor: pointer;
	transition: .2s;
}

.btn-login:hover {
	background: #4f46e5;
}

/* FOOTER */
.footer {
	margin-top: 1.25rem;
	text-align: center;
	font-size: 0.75rem;
	color: #9ca3af;
}

/* MOBILE */
@media ( max-width :480px) {
	.login-card {
		padding: 1.75rem 1.375rem;
	}
}
