html {
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8fafc;
    display: flex;
    height: 100%;
}

.header {
    display: block;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.logo {
    display: block;
    width: 30%;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
}

@media all and (max-width: 932px) {
    .padding-div{
        display: none;
        flex: 0 0 0;
    }
    .logo-div {
        display: none;
        flex: 0 0 0;
    }
    .rightside {
        flex: 0 0 100%;
    }
}
@media all and (min-width:933px) {
    .padding-div{
        flex: 0 0 0%;
    }
    .logo-div {
        display: show;
        flex: 0 0 50%;
    }
    .rightside {
        flex: 0 0 50%;
    }
}

.logo-div{
    background-image: url('/img/hyaoqigypvfm6tl99jt.svg');
    background-repeat: no-repeat;
    background-position: 50%, 50%;
    background-size: cover;
}

.rightside {
    height: 100%;
    min-width: 500px;    
    border-left: 1px solid #9ca3af;
    overflow: auto;
}

.main-title {
    font-size: 3.5rem;
    font-weight: normal;
    text-align: center;
}

.steps {
    display: flex;
    margin-bottom: 2rem;
    gap: 1rem;
    width: 100%;
    border-bottom: 1px solid #9ca3af;
    border-top: 1px solid #9ca3af;
    padding-top: 1em;
    padding-bottom: 1em;
    justify-content:center
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    background-color: #e5e7eb;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.step.active .step-number {
    background-color: #60a5fa;
    color: white;
}

.step-divider {
    color: #9ca3af;
}


.info-text {
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.info-text-body {
    width:90%;
    margin: auto;
    text-align: center;
}

form {
    width:90%;
    margin: auto;
    margin-bottom: 4rem;
}

.form-body {
    padding: 1em;
    border-radius: 0.375rem;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
}

input[type="email"]{
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    height: 2rem;
}
input[type="text"]{
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    height: 2rem;
}
iframe {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    height: 20rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

input[type="checkbox"] {
    width: auto;
}

button {
    background-color: #60a5fa;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
}

button:hover {
    background-color: #3b82f6;
}

.support-link {
    color: #60a5fa;
    text-decoration: none;
}

.support-link:hover {
    text-decoration: underline;
}