/* Dark theme CSS for Register Page */

body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 90px 20px; /* Adjusted top padding to create more space */
}

.register-container {
    width: 40%;
    max-width: 800px;
    background-color: #1e1e1e;
    padding: 40px;
    padding-top: 110px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 120px; /* Added margin-top for more space */
}

.logo {
    width: 10px;
    height: 20px;
    margin-bottom: 20px;
}

h2 {
    color: #ffcc00;
    margin-bottom: 10px;
}

.subtitle {
    color: #cccccc;
    margin-bottom: 20px;
}

.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #ffffff;
}

.input-group input, 
.input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: #ffffff;
    border-radius: 5px;
}

.input-group input::placeholder {
    color: #bbbbbb;
}

.terms {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.terms input {
    margin-right: 10px;
}

.register-btn {
    width: 100%;
    background-color: #ff9800;
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.register-btn:hover {
    background-color: #e68900;
}

.login-link {
    font-size: 14px;
    margin-top: 15px;
}

.login-link a {
    color: #ff9800;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    .register-container {
        margin: 120px 0;
        padding-top: 250px;
        border: 30px;
        width: 130%;
    }
}
