/* Sign In Modal Styles */
.petos-signin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.petos-signin-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.petos-signin-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.petos-signin-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.petos-signin-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.petos-signin-header {
    text-align: center;
    margin-bottom: 30px;
}

.petos-signin-title {
    font-size: 32px;
    font-weight: 700;
    color: #FC8034;
    margin: 0 0 8px 0;
    font-family: 'Space Grotesk', sans-serif !important;
}

.petos-signin-subtitle {
    font-size: 14px;
    color: #6c7a80;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif !important;
}

.petos-signin-phone-field {
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif !important;
}

.petos-signin-login-button {
    width: 100%;
    padding: 18px;
    background: #D5D5D8;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.3s ease;
    margin-top: 10px;
    opacity: 0.6;
}

.petos-signin-login-button:enabled,
.petos-signin-login-button.enabled {
    background: #212121;
    cursor: pointer;
    opacity: 1;
}

.petos-signin-login-button:hover:enabled,
.petos-signin-login-button.enabled:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Mobile Responsive */
@media (max-width: 575.98px) {
    .petos-signin-modal-content {
        padding: 30px 24px;
        width: 95%;
        max-width: none;
    }

    .petos-signin-title {
        font-size: 28px;
    }

    .petos-signin-subtitle {
        font-size: 13px;
    }

    .petos-signin-login-button {
        padding: 16px;
        font-size: 16px;
    }
}

