/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Root Colors (Matching main.css) */
:root {
    --primary-color: #ff6200;
    --secondary-color: #e55a00;
    --background-light: #f9f9f9;
    --background-dark: #222;
    --text-dark: #333;
    --text-light: white;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--background-light);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Registration Container */
.registration-container {
    width: 100%;
    max-width: 500px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px;
}

.step {
    width: 30%;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #aaa;
    background: #ddd;
    border-radius: 5px;
}

.step.active {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Form Inputs */
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

/* Radio Buttons */
label {
    display: block;
    margin: 10px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

input[type="radio"] {
    margin-right: 5px;
}

/* Buttons */
.btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 20px;
    margin: 10px 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s;
}

.btn.primary {
    background: var(--primary-color);
}

.btn:hover {
    background: var(--secondary-color);
}

/* Responsive */
@media (max-width: 600px) {
    .registration-container {
        width: 90%;
    }
}
