﻿/*body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    text-align: center;
}

h1 {
    margin-bottom: 20px;
}

.actions {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 25px;
    margin: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.primary {
    background-color: #0078D7;
    color: white;
}

    .primary:hover {
        background-color: #005fa3;
    }

.secondary {
    background-color: #e0e0e0;
    color: #333;
}

    .secondary:hover {
        background-color: #c2c2c2;
    }

.footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #666;
}

	.footer a {
		color: #0078D7;
	}

		.footer a:hover {*/
			/*color: orange;*/
			/*color: #005fa3;
		}*/