﻿/* RESET */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: #f5f5f5;
	color: #212529;
}

/* LAYOUT */
.ftco-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}

.row {
	display: flex;
	justify-content: center;
}

.col-md-7,
.col-lg-5 {
	width: 100%;
	max-width: 500px;
}

/* CARD */
.login-wrap {
	background: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* LOGO */
.icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon img {
	max-width: 220px;
	height: auto;
}

/* TYPOGRAPHY */
.text-center {
	text-align: center;
}

h3 {
	margin: 20px 0;
	font-size: 28px;
}

/* FORM */
.form-group {
	margin-bottom: 20px;
}

.form-control {
	width: 100%;
	padding: 14px 16px;
	font-size: 16px;
	border: 1px solid #dcdcdc;
	border-radius: 8px;
	outline: none;
	transition: border-color 0.2s ease;
}

.form-control:focus {
	border-color: #000;
}

/* BUTTON */
.btn {
	border: none;
	cursor: pointer;
	font-weight: 600;
}

.btn-primary {
	background: #E5302B;
	color: #fff;
}

.btn-primary:hover {
	background: #222;
}

.submit {
	padding: 14px;
}

/* LINKS */
a {
	color: #000;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}