/* =========================
RESET
========================= */

*, *::before, *::after {
	margin:0;
	padding:0;
	box-sizing:border-box;
}


/* =========================
VARIABLES
========================= */

:root{
	--background:#0c2030;
	--background-highlight:#113653;

	--border:#616e78;
	--accent:#2186d5;
	--accent-border:#6bade1;
}


/* =========================
BASE
========================= */

body{
	height:100vh;
	background:#0f0f0f;
	color:#fff;

	font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
}

a{
	text-decoration:none;
	color:white;
}


/* =========================
LAYOUT
========================= */

#start-container{
	height:100%;
	display:flex;
	padding:20px;
	gap:20px;
}


/* =========================
LOGO SECTION
========================= */

#logo-info-container{
	width:50%;
	height:95%;

	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;

	gap:120px;
	padding:20px;
}

#logo{
	padding-top:50px;
	height:40%;
}

#info-row{
	width:100%;
	display:flex;
	gap:20px;
}


/* =========================
APP BUTTON (FLAGS)
========================= */

.app-flags{
	width:280px;
	height:80px;

	display: inline-block;
	align-items:center;
	justify-content:center;

	background:#ff3c3c;

	font-size:20px;
	border-radius:6px;
}

.app-flags a{
	width:100%;
	height:100%;

	display:flex;
	align-items:center;
	justify-content:center;
	gap: 10px;
}

.apps-container {
    display: flex;
    gap: 10px;           /* espacio entre botones */
    justify-content: center; /* opcional: centrarlos */
}


/* Botón específico de Guardian */
.app-flags.guardian a {
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
	border-radius:6px;
	padding-left: 30px;
}

/* Icono */
.app-flags .icon {
    width: 60px;
    height: 60px;
}

.app-flags.guardian a:hover {
    background-color: #f5f5f5;
    border-color: #999;
}

/* =========================
LOGIN
========================= */

#login-container{
	width:50%;
	height:100%;

	display:flex;
	align-items:center;
	justify-content:center;

	border-radius:20px;
	border:1px solid var(--border);
}

#login-wrap{
	display:flex;
	flex-direction:column;
	gap:20px;
}

#login-wrap h1{
	font-size:54px;
	font-weight:500;
}

#login-wrap form{
	display:flex;
	flex-direction:column;
	gap:20px;
}

.input-wrap{
	display:flex;
	flex-direction:column;
	gap:10px;
}

input{
	background:var(--background-highlight);

	padding:10px;

	border:1px solid var(--border);
	border-radius:10px;

	color:#fff;
	font-size:16px;

	outline:none;
}


/* =========================
BUTTONS
========================= */

.button{
	display:flex;
	align-items:center;
	justify-content:center;

	padding:10px;

	border-radius:10px;
	border:1px solid var(--border);

	cursor:pointer;

	font-size:16px;

	transition:background .12s ease;
}

.button:hover{
	background:rgba(255,255,255,0.06);
}

.button.primary-button{
	background:var(--accent);
	border-color:var(--accent-border);
}

.button.primary-button:hover{
	background:#3e95d8;
}


/* =========================
MOBILE APP BUTTON
========================= */

.app-mobile{
	display:none;
	text-align:center;
	margin-top:10px;
}

.app-mobile .button{
	width:200px;
}


/* =========================
RESPONSIVE
========================= */

@media (max-width:589px){

	body{
		display:flex;
		align-items:center;
		justify-content:center;
	}

	#start-container{
		display:block;
		padding:20px;
	}

	#logo-info-container{
		width:90%;
		height:200px;
	}

	#logo{
		width:100%;
		height:200px;
		padding-bottom:25px;
	}

	#login-container{
		width:80%;
		margin-left:10%;
		height:20%;
	}

	#login-wrap{
		width:80%;
	}

	#login-wrap h1{
		font-size:24px;
	}

	.app-flags{
		display:none;
	}

	.app-mobile{
		display:flex;
		justify-content:center;
	}

	#info-row{
		display:none;
	}

}