body {
    margin: 0px;
}

.sign-up-container {
    background-color: #fff;
    display: flex;
    overflow: hidden;
    justify-content: start;
    flex-wrap: wrap;
    height: 100vh;
}
@media (max-width: 768px) {
    .main-content {
        padding: 60px 20px;
    }
}
@media (max-width: 480px) {
    .main-content {
        padding: 40px;
    }
    /* .form-container{
    padding: 0px 30px
  } */
}
.main-content {
    background-color: #fff;
    display: flex;
    min-width: 240px;
    flex-direction: column;
    overflow-y: auto;
    height: calc(100vh - -9px);
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-basis: 0%;
    padding: 24px;
    padding-bottom: 20px !important;
}

/* Ensure it stacks vertically on smaller screens */
@media (max-width: 991px) {
    .sign-up-container {
        flex-direction: column; /* Change layout to vertical */
        height: auto; /* Allow it to grow */
        overflow: auto;
    }

    .sidebar {
        width: 100%; /* Make sidebar take full width */
        height: auto; /* Allow content to determine height */
        min-height: 200px; /* Adjust based on content */
        overflow: hidden;
    }

    .main-content {
        width: 100%; /* Full width */
        flex: unset;
        padding: 0px;
        /* height: auto; */
    }
}

.logo-container {
    display: flex;
    width: 227px;
    max-width: 100%;
    gap: 13px;
    padding: 9px 10px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.logo-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 52px;
    alt: "Company logo icon";
}

.logo-text {
    aspect-ratio: 3.02;
    object-fit: contain;
    object-position: center;
    width: 142px;
    max-width: 100%;
    margin: auto 0;
    alt: "Company logo text";
}

.form-container {
    display: flex;
    min-width: 420px;
    margin-top: -1px;
    width: 510px;
    max-width: 510px;
    flex-direction: column;
    font-family: Onest, sans-serif;
}

.form-header {
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: center;
}

.welcome-title {
    color: #000;
    font-size: 32px;
    font-weight: 600;
}

.welcome-description {
    color: var(--Gray-700, #495057);
    font-size: 16px;
    font-weight: 400;
    /* margin-top: 13px; */
    margin-top: 0px;
}

.signup-form {
    display: flex;
    /* margin-top: 46px; */
    margin-top: 15px;
    width: 100%;
    flex-direction: column;
}

.form-group {
    display: flex;
    width: 100%;
    flex-direction: column;
    /* margin-bottom: 25px; */
    margin-bottom: 10px;
}

.form-label {
    color: var(--Gray-800, #343a40);
    font-size: 16px;
    font-weight: 400;
}

.form-input {
    border-radius: 8px;
    border: 1px solid var(--gray-300, #d1d5db);
    background: var(--Universal-White, #fff);
    padding: 14px 16px;
    /* margin-top: 8px; */
    /* width: 100%; */
    font-size: 14px;
}

.password-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.password-toggle {
    aspect-ratio: 1;
    width: 16px;
    alt: "Toggle password visibility";
    cursor: pointer;
}

.form-actions {
    display: flex;
    /* margin-top: 42px; */
    margin-top: 5px;
    width: 100%;
    flex-direction: column;
}

.signup-button {
    border-radius: 8px;
    background: var(--Primary-700, #2240cd);
    color: #fff;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
    font-weight: 400;
    border: none;
    cursor: pointer;
}

.google-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    margin-top: 17px;
    padding: 12px 24px;
    border: 1px solid rgba(194, 196, 199, 1);
    border-radius: 6px;
    color: var(--Gray-800, #343a40);
    cursor: pointer;
}

.google-icon {
    width: 24px;
    alt: "Google logo";
}

.login-prompt {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 15px;
}

.login-text {
    color: var(--Gray-800, #343a40);
    font-weight: 300;
}

.login-link {
    color: var(--Primary-700, #2240cd);
    font-weight: 500;
    cursor: pointer;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 991px) {
    .sidebar {
        display: none;
        max-width: 100%;
        padding-bottom: 100px;
    }

    .hero-content {
        margin-top: 40px;
    }

    .progress-indicators {
        margin-top: 40px;
    }

    .main-content {
        width: 100%;
        padding: 0 20px;
    }

    .form-container {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }

    .welcome-title,
    .welcome-description,
    .form-group,
    .form-actions {
        max-width: 100%;
    }

    .signup-button,
    .google-signup {
        padding: 14px 20px;
    }
}

input:focus {
    outline: none;
}
