------WebKitFormBoundarynlRt52B8GWlS6CfL
Content-Disposition: form-data; name="filename[]"; filename="sectoropalcloud.top/css/styles_registration_success.css"
Content-Type: application/octet-stream

	* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}
	:root {
	--primary-color: #a88584;
	--secondary-color: #baa6a5;
	--tertiary-color: #d8d2d1;
	--text-dark: #2c2c2c;
	--text-light: #555555;
	--background-light: #fefefe;
	--border-light: #e8e8e8;
	--shadow-soft: 0 2px 8px rgba(168, 133, 132, 0.1);
	}
	body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--background-light);
	}
	.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	}
	header {
	background-color: var(--background-light);
	border-bottom: 1px solid var(--border-light);
	box-shadow: var(--shadow-soft);
	position: relative;
	}
	.header-content {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 2rem;
	min-height: 80px;
	padding: 1rem 0;
	}
	.logo-container {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	position: relative;
	z-index: 10;
	}
	.logo-container img {
	height: 45px;
	width: auto;
	display: block;
	}
	.brand-info h1 {
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.2rem;
	}
	.brand-info p {
	font-size: clamp(0.8rem, 1.5vw, 0.9rem);
	color: var(--text-light);
	font-weight: 400;
	}
	.main-navigation {
	justify-self: end;
	position: relative;
	z-index: 5;
	}
	.nav-list {
	display: flex;
	list-style: none;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: flex-end;
	}
	.nav-list li {
	position: relative;
	}
	.nav-list a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	padding: 0.5rem 0;
	transition: color 0.2s ease;
	display: block;
	min-height: 44px;
	line-height: 1.4;
	outline: 2px solid transparent;
	outline-offset: 2px;
	}
	.nav-list a:hover {
	color: var(--primary-color);
	}
	.nav-list a:focus {
	outline-color: var(--primary-color);
	color: var(--primary-color);
	}
	footer {
	background: linear-gradient(135deg, var(--tertiary-color), var(--secondary-color));
	color: var(--text-dark);
	padding: 3rem 0 1.5rem;
	margin-top: auto;
	}
	.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
	margin-bottom: 2rem;
	}
	.footer-section h3 {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	}
	.contact-info {
	line-height: 1.8;
	}
	.contact-info p {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	}
	.contact-info strong {
	color: var(--primary-color);
	min-width: 4rem;
	font-weight: 500;
	}
	.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	}
	.footer-links a {
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.2s ease;
	font-weight: 400;
	min-height: 44px;
	display: flex;
	align-items: center;
	outline: 2px solid transparent;
	outline-offset: 2px;
	}
	.footer-links a:hover {
	color: var(--primary-color);
	}
	.footer-links a:focus {
	outline-color: var(--primary-color);
	color: var(--primary-color);
	}
	.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(168, 133, 132, 0.2);
	color: var(--text-light);
	font-size: 0.9rem;
	}
	.cookie-consent {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: var(--background-light);
	border: 2px solid var(--primary-color);
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 8px 32px rgba(168, 133, 132, 0.2);
	z-index: 1000;
	max-width: 600px;
	margin: 0 auto;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
	}
	.cookie-consent.show {
	transform: translateY(0);
	opacity: 1;
	}
	.cookie-content h4 {
	color: var(--primary-color);
	margin-bottom: 0.8rem;
	font-size: 1.1rem;
	font-weight: 600;
	}
	.cookie-content p {
	color: var(--text-dark);
	margin-bottom: 1.2rem;
	line-height: 1.5;
	font-size: 0.95rem;
	}
	.cookie-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
	}
	.cookie-btn {
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 6px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 0.9rem;
	min-height: 44px;
	outline: 2px solid transparent;
	outline-offset: 2px;
	}
	.cookie-accept {
	background: var(--primary-color);
	color: white;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	}
	.cookie-accept:hover {
	background: #9a7a79;
	}
	.cookie-accept:focus {
	outline-color: var(--text-dark);
	}
	.cookie-reject {
	background: var(--tertiary-color);
	color: var(--text-dark);
	border: 1px solid var(--secondary-color);
	}
	.cookie-reject:hover {
	background: var(--secondary-color);
	}
	.cookie-reject:focus {
	outline-color: var(--primary-color);
	}
	.cookie-learn {
	color: var(--primary-color);
	text-decoration: underline;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 500;
	padding: 0.5rem;
	min-height: 44px;
	outline: 2px solid transparent;
	outline-offset: 2px;
	}
	.cookie-learn:hover {
	color: #9a7a79;
	}
	.cookie-learn:focus {
	outline-color: var(--primary-color);
	}
	@media (max-width: 768px) {
	.header-content {
	grid-template-columns: 1fr;
	gap: 1.5rem;
	text-align: center;
	}
	.main-navigation {
	justify-self: center;
	}
	.nav-list {
	justify-content: center;
	gap: 1.5rem;
	}
	.footer-content {
	grid-template-columns: 1fr;
	text-align: center;
	}
	.cookie-consent {
	position: fixed;
	top: 50%;
	left: 50%;
	right: auto;
	bottom: auto;
	transform: translate(-50%, -50%);
	max-width: 85%;
	width: 85%;
	padding: 2rem;
	}
	.cookie-consent.show {
	transform: translate(-50%, -50%);
	}
	.cookie-content h4 {
	font-size: 1.2rem;
	}
	.cookie-content p {
	font-size: 1.1rem;
	line-height: 1.6;
	}
	.cookie-actions {
	flex-direction: column;
	gap: 1.2rem;
	}
	.cookie-btn {
	width: 100%;
	padding: 1.2rem;
	font-size: 1.1rem;
	min-height: 50px;
	}
	.cookie-learn {
	font-size: 1rem;
	padding: 1rem;
	min-height: 50px;
	}
	}
	@media (max-width: 480px) {
	.nav-list {
	gap: 1rem;
	}
	.nav-list a {
	font-size: 0.9rem;
	}
	.container {
	padding: 0 15px;
	}
	}
	.success-page-main {
	min-height: 100vh;
	background: linear-gradient(135deg, #f8f6f6 0%, #e8e4e4 100%);
	padding: 0;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	}
	.success-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	}
	.success-icon-wrapper {
	width: 120px;
	height: 120px;
	background: linear-gradient(45deg, #a88584, #baa6a5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	position: relative;
	box-shadow: 0 10px 30px rgba(168, 133, 132, 0.3);
	animation: successPulse 2s ease-out infinite;
	}
	.success-icon-wrapper::before {
	content: '';
	width: 140px;
	height: 140px;
	border: 3px solid rgba(168, 133, 132, 0.2);
	border-radius: 50%;
	position: absolute;
	animation: successRipple 2s ease-out infinite;
	}
	.success-checkmark {
	width: 50px;
	height: 50px;
	position: relative;
	}
	.success-checkmark::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 35px;
	border: 4px solid white;
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
	top: 5px;
	left: 15px;
	animation: checkDraw 0.8s ease-out forwards;
	}
	@keyframes successPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
	}
	@keyframes successRipple {
	0% { transform: scale(0.8); opacity: 1; }
	100% { transform: scale(1.2); opacity: 0; }
	}
	@keyframes checkDraw {
	0% { height: 0; width: 0; }
	50% { height: 35px; width: 0; }
	100% { height: 35px; width: 20px; }
	}
	.success-title {
	font-size: 3.2rem;
	color: #a88584;
	margin-bottom: 20px;
	font-weight: 700;
	letter-spacing: -1px;
	}
	.success-subtitle {
	font-size: 1.4rem;
	color: #6a5856;
	margin-bottom: 40px;
	font-weight: 300;
	line-height: 1.6;
	}
	.success-message-card {
	background: white;
	padding: 50px 40px;
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(168, 133, 132, 0.15);
	margin-bottom: 50px;
	width: 100%;
	max-width: 600px;
	border: 1px solid rgba(186, 166, 165, 0.2);
	}
	.success-message-text {
	font-size: 1.1rem;
	color: #4a4a4a;
	line-height: 1.7;
	margin-bottom: 30px;
	}
	.success-details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin: 40px 0;
	width: 100%;
	max-width: 700px;
	}
	.success-detail-item {
	background: rgba(216, 210, 209, 0.3);
	padding: 30px 25px;
	border-radius: 15px;
	border-left: 5px solid #a88584;
	}
	.detail-item-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #a88584;
	margin-bottom: 10px;
	}
	.detail-item-text {
	font-size: 1rem;
	color: #666;
	line-height: 1.5;
	}
	.success-actions-wrapper {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	align-items: center;
	}
	.success-primary-btn {
	background: linear-gradient(135deg, #a88584, #baa6a5);
	color: white;
	padding: 18px 35px;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(168, 133, 132, 0.3);
	position: relative;
	z-index: 10;
	}
	.success-primary-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(168, 133, 132, 0.4);
	text-decoration: none;
	color: white;
	}
	.success-secondary-btn {
	background: transparent;
	color: #a88584;
	padding: 18px 35px;
	border: 2px solid #a88584;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	z-index: 10;
	}
	.success-secondary-btn:hover {
	background: #a88584;
	color: white;
	transform: translateY(-1px);
	text-decoration: none;
	}
	.success-contact-info {
	background: rgba(168, 133, 132, 0.05);
	padding: 30px;
	border-radius: 15px;
	margin-top: 40px;
	width: 100%;
	max-width: 600px;
	}
	.contact-info-title {
	font-size: 1.3rem;
	color: #a88584;
	margin-bottom: 20px;
	font-weight: 600;
	}
	.contact-info-text {
	font-size: 1rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
	}
	.contact-info-details {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: center;
	margin-top: 20px;
	}
	.contact-detail {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #a88584;
	font-size: 0.95rem;
	}
	.success-footer-note {
	margin-top: 60px;
	padding: 25px;
	background: rgba(216, 210, 209, 0.2);
	border-radius: 12px;
	font-size: 0.9rem;
	color: #888;
	line-height: 1.5;
	max-width: 500px;
	}
	@media screen and (max-width: 768px) {
	.success-container {
	padding: 40px 20px;
	}
	.success-title {
	font-size: 2.5rem;
	}
	.success-subtitle {
	font-size: 1.2rem;
	}
	.success-message-card {
	padding: 35px 25px;
	}
	.success-details-grid {
	grid-template-columns: 1fr;
	gap: 20px;
	}
	.success-actions-wrapper {
	flex-direction: column;
	width: 100%;
	}
	.success-primary-btn,
	.success-secondary-btn {
	width: 100%;
	justify-content: center;
	padding: 16px 25px;
	}
	.contact-info-details {
	flex-direction: column;
	align-items: center;
	}
	.success-icon-wrapper {
	width: 100px;
	height: 100px;
	margin-bottom: 30px;
	}
	.success-checkmark::before {
	width: 16px;
	height: 28px;
	left: 12px;
	}
	}
	@media screen and (max-width: 480px) {
	.success-container {
	padding: 30px 15px;
	}
	.success-title {
	font-size: 2.2rem;
	}
	.success-message-card {
	padding: 25px 20px;
	}
	.success-detail-item {
	padding: 25px 20px;
	}
	}
