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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Comfortaa';
    src: url('Comfortaa-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Comfortaa', 'Inter', sans-serif;
    background-color: #fafafa;
    color: #262626;
    line-height: 1.5;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Phone Mockup Styles */
.phone-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 1000px;
}

.phone-screens-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

/* Form Container Styles */
.form-container {
    flex: 1;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-box {
    background: linear-gradient(to bottom, #ef5c39 0%, #ef5c39 50%, #9900ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-size: 51px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.form-input {
    background: #fafafa;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    padding: 9px 0 7px 8px;
    font-size: 14px;
    color: #262626;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: #ef5c39;
}

.form-input::placeholder {
    color: #8e8e8e;
}

.login-button {
    background: linear-gradient(135deg, #ef5c39 0%, #9900ff 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 9px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.login-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.login-button:active {
    opacity: 0.8;
    transform: translateY(0);
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #8e8e8e;
    font-size: 13px;
    font-weight: 600;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dbdbdb;
}

.divider span {
    padding: 0 18px;
}

.facebook-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: none;
    border: none;
    color: #9900ff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
}

.facebook-login svg {
    width: 20px;
    height: 20px;
}

.forgot-password {
    color: #9900ff;
    font-size: 12px;
    text-decoration: none;
}

.signup-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.signup-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 40px;
    box-shadow: none;
    min-height: 400px;
}

.cutlery-icon {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 10px;
}

.cutlery-corner-icon {
    display: none;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    object-fit: contain;
    z-index: 1000;
}

.hero-mobile {
    display: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 20px;
}

.signup-title {
    font-family: 'Comfortaa', 'Inter', sans-serif !important;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #21242c;
    margin: 0;
    display: block;
}

.signup-subtitle {
    font-family: 'Comfortaa', 'Inter', sans-serif !important;
    font-size: 20px;
    color: #21242c;
    margin: 0;
}

.cta-button {
    background: none;
    color: #262626;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.install-button {
    background:  linear-gradient(45deg, #ef5c39 0%, #9900ff 100%);
    color: #fff;
    min-height: 40px;
    min-width: 270px;
    padding: 8px 8px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    opacity: 0.9;
    /* transform: translateY(-1px); */
}

.cta-button:active {
    opacity: 0.8;
    transform: translateY(0);
}

.pwa-install-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}

.install-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.install-button:active {
    opacity: 0.8;
    transform: translateY(0);
}

.install-text {
    font-size: 14px;
    font-weight: 600;
    color: #21242c;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.install-steps {
    font-size: 12px;
    color: #21242c;
    margin: 4px 0;
    font-family: 'Inter', sans-serif;
}

.app-download {
    text-align: center;
}

.app-download p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #fff;
}

.download-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.app-store-button img,
.google-play-button img {
    height: 40px;
    width: auto;
}

/* Footer Styles */
.footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #8e8e8e;
    font-family: 'Inter', sans-serif;
}

.language-select {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    cursor: pointer;
    outline: none;
    padding: 4px 8px;
}

/* Responsive Design */
@media (max-width: 875px) {
    .container {
        flex-direction: column;
        gap: 40px;
        padding-top: 100px;
    }

    .phone-container {
        display: none;
    }

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

    .cutlery-icon {
        display: none;
    }

    .hero-mobile {
        display: block;
    }

    .cutlery-corner-icon {
        display: block;
    }
}

@media (max-width: 450px) {
    .form-box {
        padding: 20px;
        border: none;
    }

    .container {
        padding-top: 100px;
    }

}

