
         body {
			font-family: 'Segoe UI', Arial, sans-serif;
			background-color: #324A62;
			color: #333;
			display: flex;
			justify-content: center;
			align-items: center;
			height: 100vh;
			margin: 0;
			text-align: center;
		}
        
        .container {
			max-width: 600px;
			padding: 40px;
			background: #ACD1F7;
			border: 2px dashed #999;
			border-radius: 20px;
			box-shadow: 0 4px 15px rgba(0,0,0,0.8);
		}
        
        h1 {
			font-size: 2.5rem;
			color: #2c3e50;
			margin-bottom: 10px;
		}
        
        p { 
			font-size: 1.1rem;
			line-height: 1.6;
			color: #666;
			margin-bottom: 30px;
        }
        .btn { 
			background-color: #0056b3;
			color: white;
			padding: 12px 25px;
			text-decoration: none; border-radius: 15px;
			font-weight: bold; transition: background 0.3s;
		}
        
        .btn:hover {
			background-color: #003d82;
		}
		
		.span {
			color: #f00;
		}
