* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0 !important;
    padding: 0;
}

.sign-up {
    width: 100%; /* Full width, no max-width */
    background-color: #fff;
    border-radius: 0; /* No rounded corners for edge-to-edge */
    overflow: hidden;
    box-shadow: none; /* Remove shadow for full-width look */
}

.nav {
    display: flex;
    align-items: center;
    padding: 16px 32px;
    border-bottom: 2px solid #f18e1a;
}

.nav img {
    height: 40px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    padding: 16px 32px;
    gap: 16px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.breadcrumb-item.active {
    color: #f18e1a;
}

.breadcrumb-item img {
    width: 12px;
    height: 12px;
}

.status {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    position: relative;
}

.status-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.status-step .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.status-step.active .circle {
    background-color: #f18e1a;
}

.status-step .label {
    font-size: 10px;
    color: #666;
    text-align: center;
}

.status-step.active .label {
    color: #f18e1a;
}

.status-line {
    position: absolute;
    height: 4px;
    background-color: #ccc;
    top: 18px;
    left: 60px;
    right: 60px;
    z-index: 0;
}

.container {
    padding: 32px;
    background-image: url('../images/onboarding-bg.png');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sign-in {
    max-width: 600px;
    padding: 48px;
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sign-in h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #222;
}

.social-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.social-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 50px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-button:hover {
    border-color: #f18e1a;
    transform: translateY(-2px);
}

.social-button img {
    width: 24px;
    height: 24px;
}

.social-button span {
    font-size: 16px;
    color: #666;
}

.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #ccc;
}

.divider-text {
    font-size: 16px;
    color: #666;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    position: relative;
}

.form-field input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    color: #333;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-field input:focus {
    outline: none;
    border-bottom-color: #f18e1a;
}

.form-field label {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 16px;
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-field input:focus+label,
.form-field input:not(:placeholder-shown)+label {
    top: -10px;
    left: 16px;
    font-size: 12px;
    color: #f18e1a;
}

.verification {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    margin: 16px 0;
}

.verification img {
    width: 24px;
    height: 24px;
}

.create-button {
    padding: 12px;
    background-color: #f18e1a;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.create-button:hover {
    background-color: #e07b00;
}

.login-text {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-top: 16px;
}

.login-text a {
    color: #f18e1a;
    text-decoration: none;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .sign-up {
        margin: 0; /* No margins on smaller screens */
        border-radius: 0; /* No rounded corners for edge-to-edge */
        width: 100%;
    }

    .nav {
        padding: 12px 16px;
    }

    .breadcrumbs {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .status {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }

    .status-line {
        left: 40px;
        right: 40px;
    }

    .container {
        padding: 16px;
        justify-content: center;
    }

    .sign-in {
        padding: 24px;
        border-radius: 16px;
    }

    .sign-in h1 {
        font-size: 24px;
    }

    .social-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .status {
        gap: 16px;
    }

    .status-step .circle {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .status-line {
        left: 30px;
        right: 30px;
    }
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-bottom-color: #f18e1a;
}

textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    color: #333;
    background: transparent;
    transition: border-color 0.3s ease;
    min-height: 120px;
    resize: vertical;
    font-family: 'Montserrat', sans-serif;
}

textarea:focus {
    outline: none;
    border-bottom-color: #f18e1a;
}