
body {
    margin: 0;
    padding: 0;
    background: url('/site/img/fond_prontera.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
}

.container {
    background-color: rgba(0, 0, 0, 0.7);
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    max-width: 1000px;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

h1, h2, h3 {
    text-align: center;
    color: #ffcc00;
}

a {
    color: #00e0ff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #fff;
}

nav {
    text-align: center;
    margin-bottom: 20px;
}

nav a {
    background-color: rgba(0,0,0,0.6);
    margin: 0 10px;
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-block;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: rgba(255,255,255,0.2);
}

input[type="text"], input[type="password"], input[type="number"], select {
    width: 100%;
    padding: 8px;
    margin: 5px 0 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

input[type="submit"] {
    background-color: #ffaa00;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #ffcc00;
}

table {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    border: 1px solid #999;
    padding: 8px;
    text-align: center;
}

p {
    margin: 15px 0;
}
