html, body {
    height: 100%;
    width: 100%;
}
body {
    min-height: 100vh;
    min-width: 100vw;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', Arial, sans-serif;
    overflow-x: hidden;
    position: relative;
}

.signup-container {
    display: flex;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
}

.signup-image-section {
    flex: 1;
    background: linear-gradient(135deg, #FE8400 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.signup-image-section .signup-image {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    position: relative;
}

.signup-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: relative;
}

.signup-form-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    text-align: center;
}

.signup-form-section p {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 400px;
}

.signup-form {
    width: 100%;
    max-width: 400px;
}

.signup-form div {
    margin-bottom: 1.5rem;
}

.signup-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.input-wrapper {
    position: relative;
}

.signup-form input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
}

.signup-form input:focus {
    border-color: #FE8400;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(254, 132, 0, 0.1);
}

.signup-form input::placeholder {
    color: #a0aec0;
}

.signup-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #FE8400 0%, #ff6b35 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(254, 132, 0, 0.3);
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 132, 0, 0.4);
}

.register-link {
    text-align: center;
    color: #718096;
    font-size: 1rem;
}

.login-link {
    color: #FE8400;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #ff6b35;
}

.ellipse-bg, .ellipse-bg-bottom, .ellipse-bg-large {
    position: absolute;
    opacity: 0.3;
}

.ellipse-bg {
    top: 10%;
    right: 15%;
}

.ellipse-bg-bottom {
    bottom: 15%;
    left: 10%;
}

.ellipse-bg-large {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.chevron-back {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chevron-back:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .signup-container {
        flex-direction: column;
    }

    .signup-image-section {
        order: -1;
        min-height: 250px;
        flex: 0 0 250px;
    }

    .signup-form-section {
        flex: 1;
        padding: 2rem 1.5rem;
    }

    .signup-form-section h2 {
        font-size: 2.2rem;
    }

    .chevron-back {
        top: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .signup-container {
        flex-direction: column;
    }

    .signup-image-section {
        order: -1;
        min-height: 200px;
        flex: 0 0 200px;
    }

    .signup-form-section {
        padding: 1.5rem 1rem;
        min-height: calc(100vh - 200px);
    }

    .signup-form-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .signup-form-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .signup-form {
        max-width: 100%;
    }

    .signup-form input {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .signup-btn {
        padding: 0.9rem;
        font-size: 1rem;
    }

    .chevron-back {
        top: 10px;
        left: 10px;
        width: 36px;
        height: 36px;
    }

    .ellipse-bg, .ellipse-bg-bottom {
        width: 20px;
        height: 20px;
    }

    .ellipse-bg-large {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .signup-form-section {
        padding: 1rem 0.8rem;
    }

    .signup-form-section h2 {
        font-size: 1.6rem;
    }

    .signup-form-section p {
        font-size: 0.9rem;
    }

    .signup-form input {
        padding: 0.8rem 0.9rem;
        font-size: 0.9rem;
    }

    .signup-btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .register-link {
        font-size: 0.9rem;
    }

    .signup-image-section {
        min-height: 180px;
        flex: 0 0 180px;
    }

    .signup-image-section .signup-image {
        max-width: 90%;
    }
}

@media (max-width: 320px) {
    .signup-form-section {
        padding: 0.8rem 0.6rem;
    }

    .signup-form div {
        margin-bottom: 1.2rem;
    }
}
