/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    animation: fadeIn 0.5s ease-in-out;
    margin: 0;
}

/* Placeholder Styles */
input::placeholder,
textarea::placeholder {
    color: #b0b0b0;
    opacity: 1;
}

/* Text Color */
p,
h2,
h1,
label {
    color: #ffffff;
}

/* Form Container Styles */
.form-container {
    background-color: #000000;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px auto;
    box-sizing: border-box;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 100%;
    height: auto;
}

/* Form Title Styles */
.form-title {
    font-size: 30px;
    margin-bottom: 20px;
}

/* Form Styles */
form {
    width: 100%;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.5s ease-in-out;
}

/* Heading Styles */
h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Input and Textarea Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
}

/* Checkbox and Radio Button Styles */
input[type="checkbox"],
input[type="radio"] {
    margin-left: 0;
    color: #ffffff;
}

.styled-label {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: bold;
}

/* Align checkboxes to the left */
.options {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.options label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
/* 
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
} */

/* Button Styles */
button {
    background: #425bff;
    border: 1px solid #425bff;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    font-family: nunito, roboto, proxima-nova, sans-serif;
    font-size: 16px;
    font-weight: 800;
    padding: 12px 20px;
    width: 15%;
}

button:hover,
button:active {
    background-color: initial;
    color: #425bff;
}

button:active {
    opacity: .5;
}

/* Fieldset and Legend Styles */
fieldset {
    border: none;
}

legend {
    font-size: 22px;
}

/* Label Styles */
label {
    color: #ffffff;
}

form .form-step fieldset {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

form .form-step fieldset label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

form .form-step fieldset input[type="checkbox"] {
    margin-right: 10px;
}

/* Hidden Element Style */
.hidden {
    display: none !important;
}

/* Fade In Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Slide In Animation Keyframes */
@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Adjustments for Tablet Devices (max-width: 820px) */
@media (max-width: 820px) {
    .form-container {
        padding: 30px;
    }

    .form-title {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        padding: 10px;
        font-size: 14px;
    }

    button {
        padding: 12px;
        font-size: 14px;
    }

    .logo {
        max-height: 50px;
    }

    .logo-container {
        margin-bottom: 20px;
    }
}

/* Responsive Adjustments for Mobile Devices (max-width: 600px) */
@media (max-width: 600px) {
    .form-container {
        padding: 20px;
        margin: 10px;
    }

    .form-title {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        padding: 10px;
        font-size: 14px;
    }

    button {
        padding: 10px;
        font-size: 14px;
    }

    .logo {
        max-height: 40px;
    }

    .logo-container {
        margin-bottom: 15px;
    }
}