/* register/css/style.css */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Verdana', sans-serif;
    background-color: #121212;
    background-image: url('../../settings/bg.jpg'); 
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #fff;
    display: flex; flex-direction: column; min-height: 100vh;
}

.main-content-area { 
    margin-top: 40px; padding-bottom: 40px; flex: 1; width: 100%;
    display: flex; align-items: center; justify-content: center;
}

.container {
    max-width: 600px; width: 95%; margin: 0 auto;
    background: rgba(15, 15, 15, 0.95);
    border-radius: 15px; padding: 40px;
    border: 2px solid #ff5000;  
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    text-align: center;
}

.reg-icon { font-size: 60px; color: #ff5000; margin-bottom: 20px; }
.reg-title { font-size: 24px; font-weight: bold; margin-bottom: 15px; text-transform: uppercase; }
.reg-text { color: #ccc; font-size: 14px; line-height: 1.6; margin-bottom: 30px; }

/* Status Box */
.status-box {
    padding: 20px; border-radius: 8px; margin-bottom: 20px; text-align: left;
}
.status-success { background: rgba(40, 167, 69, 0.2); border: 1px solid #28a745; color: #28a745; }
.status-error { background: rgba(220, 53, 69, 0.2); border: 1px solid #dc3545; color: #dc3545; }
.status-info { background: rgba(23, 162, 184, 0.2); border: 1px solid #17a2b8; color: #17a2b8; }

.btn-large {
    display: inline-block; background: #171a21; color: white;
    padding: 15px 40px; border-radius: 50px; text-decoration: none;
    font-weight: bold; font-size: 16px; border: 2px solid #333; transition: 0.3s;
}
.btn-large:hover { border-color: #ff5000; color: #ff5000; background: #1f2229; }