/* Basic Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

body {
	background: #e5edf6; /* soft BRI blue tint */
	display: flex;
	justify-content: center;
	padding: 40px 20px;
	color: #222;
}

/* Main Container */
.container {
	width: 100%;
	max-width: 700px;
}

.logo {
    text-align: center;
    margin-bottom: 25px;
}

.logo-responsive {
    max-width: 100%;
    height: auto;
    width: 400px; /* Lebar maksimum default */
    display: block;
    margin: 0 auto;
}

/* --- MEDIA QUERY: Aturan Khusus untuk Layar Kecil (HP) --- */
@media (max-width: 600px) {
    /* Pada layar yang lebarnya kurang dari 600px, 
       ubah lebar maksimum logo menjadi 80% dari container */
    .logo-responsive {
        width: 80%; /* Menggunakan persentase agar lebih fleksibel */
        /* atau bisa juga menggunakan nilai fixed yang lebih kecil */
        /* max-width: 300px; */ 
    }
}

/* Logo */
.logo h1 {
	font-size: 45px;
	font-weight: 900;
	text-align: center;
	line-height: 40px;
	margin-bottom: 25px;
	color: #00529c; /* BRI blue */
}

/* Welcome Box */
.welcome-box {
	background: #f4f8ff; /* light BRI blue box */
	padding: 25px;
	border-radius: 18px;
	text-align: center;
	margin-bottom: 35px;
}

.welcome-box h2 {
	margin-bottom: 10px;
	color: #00529c;
}

.highlight {
	background: #f36f21; /* BRI orange */
	color: #fff;
	padding: 2px 6px;
	border-radius: 5px;
}

/* Login & Register Buttons */
.btn-row {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 12px;
}

.btn {
	padding: 10px 20px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	font-weight: bold;
}

.login {
	background: #00529c; /* blue */
	color: #fff;
}

.register {
	background: #fff;
	border: 2px solid #00529c;
	color: #00529c;
}

/* Profile Page */
.profile-box {
	background: #f4f8ff;
	padding: 25px;
	border-radius: 18px;
}

.profile-box .intro {
	text-align: center;
	font-size: 18px;
	color: #00529c;
}

.subtitle {
	text-align: center;
	font-size: 14px;
	margin-bottom: 25px;
	color: #444;
}

/* Link Buttons */
.link-btn {
	display: block;
	width: 100%;
	max-width: 700px;
	margin: 0 auto 12px;
	padding: 18px;
	background: #00529c; /* blue */
	color: #fff;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	font-size: 17px;
	margin-bottom: 12px;
	border-radius: 12px;
	box-shadow: 0 3px 0 #000000; /* darker blue shadow */
	transition: 0.2s;
}

.link-btn:hover {
	transform: scale(1.02);
}

/* Footer text link */
.create-link {
	text-align: center;
	margin-top: 20px;
}

.create-link a {
	color: #00529c;
	text-decoration: underline;
}
