/* ============================================================
   FORGOT PASSWORD PAGE - ŞİFREMİ UNUTTUM SAYFASI
   Original Tema
============================================================ */

/* ========================================
   CONTAINER
======================================== */

.forgot-password-container {
	max-width: 500px;
	margin: 4rem auto;
	padding: 0 1rem;
}

.forgot-password-card {
	background: white;
	border-radius: 1rem;
	border: 1px solid #e5e7eb;
	padding: 2.5rem;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ========================================
   HEADER
======================================== */

.forgot-password-header {
	text-align: center;
	margin-bottom: 2rem;
}

.forgot-password-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 2rem;
	color: white;
}

.forgot-password-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--gray-900);
	margin: 0 0 0.5rem 0;
}

.forgot-password-subtitle {
	font-size: 0.9375rem;
	color: var(--gray-600);
	margin: 0;
}

/* ========================================
   FORM ELEMENTS
======================================== */

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--gray-700);
	margin-bottom: 0.5rem;
}

.form-input {
	width: 100%;
	padding: 0.875rem 1rem;
	background: var(--gray-50);
	border: 2px solid var(--gray-200);
	border-radius: 0.5rem;
	font-size: 1rem;
	transition: all 0.3s ease;
	outline: none;
}

.form-input:focus {
	background: white;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px var(--primary-light);
}

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

.btn-submit {
	width: 100%;
	padding: 1rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* ========================================
   ALERTS
======================================== */

.alert {
	padding: 1rem;
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
	font-size: 0.9375rem;
}

.alert-success {
	background: #ECFDF5;
	color: #047857;
	border: 1px solid #A7F3D0;
}

.alert-error {
	background: #FEE2E2;
	color: #991B1B;
	border: 1px solid #FECACA;
}

.forgot-reset-link-box {
	margin-top: 1rem;
	padding: 1rem;
	background: #fff;
	border-radius: 8px;
	border: 2px solid #10b981;
}

.forgot-reset-link-title {
	margin: 0 0 0.5rem;
	font-weight: 600;
	color: #047857;
}

.forgot-reset-link-url {
	display: block;
	padding: 0.75rem;
	background: #f0fdf4;
	border-radius: 6px;
	color: #047857;
	text-decoration: none;
	word-break: break-all;
	font-size: 0.875rem;
}

.forgot-reset-link-note {
	margin: 0.5rem 0 0;
	font-size: 0.75rem;
	color: #6b7280;
}

/* ========================================
   BACK TO LOGIN
======================================== */

.back-to-login {
	text-align: center;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--gray-200);
}

.back-to-login a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s;
}

.back-to-login a:hover {
	color: var(--primary-dark);
}
