/* 
   ZhiMengCMS - Modern Black-Gold Skin 
   Designed for ASP Registration System
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Inter:wght@400;600&display=swap');

body {
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modern-container {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #c5a059;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(197, 160, 89, 0.1);
    padding: 40px;
    border-radius: 4px;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.modern-container::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    pointer-events: none;
}

h1, .word_gold1 {
    font-family: 'Cinzel', serif;
    color: #c5a059;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

table {
    width: 100% !important;
    border-collapse: collapse;
}

td {
    padding: 12px 0;
    color: #bbb;
    font-size: 0.9rem;
}

input[type="text"], 
input[type="password"], 
input[type="email"] {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

input:focus {
    border-color: #c5a059;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
    outline: none;
}

input[type="image"], .btn-modern {
    background: linear-gradient(to bottom, #d4b05c 0%, #8a6d2e 100%);
    color: #1a1000;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
}

input[type="image"]:hover, .btn-modern:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
}

.word_time, .help-text {
    color: #666;
    font-size: 0.75rem;
    text-align: center;
    margin-top: 20px;
}

.captcha-img {
    margin-top: 10px;
    border: 1px solid #c5a059;
    cursor: pointer;
}
