* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    padding: 20px;

    background: #f5f7fa;
}

.container {
    width: 100%;
    max-width: 700px;

    background:
        linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)),
        url("/assets/images/multi.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 50px;
    border-radius: 12px;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

h1 {
    color: #0077cc;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact {
    /*background: rgba(255,255,255,.9);*/
    padding: 20px;
    /*border-radius: 8px;*/
    margin-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.4);
}

.footer {
    margin-top: 35px;
    font-size: 0.9rem;
    color: #666;
}

a {
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.btn-register {
    display: inline-block;
    margin: 20px 0;
    padding: 14px 28px;
    background: #0056b3;
    color: #fff;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
    border: none;
}

.btn-register:hover {
    background: #00408c;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 40px;
    padding-top: 20px;

    border-top: 1px solid rgba(0,0,0,0.15);

    font-size: 0.95rem;
}

.footer-links a {
    color: #0056b3;
    font-weight: bold;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}